function popup(url, width, height, windowName) {
	var w;
	w = window.open(
		url,
		windowName,
		"width=" + width + "," +
		"height=" + height + "," +
		"status=yes," +
		"scrollbars=yes," +
		"resizable=no"
	);
	if (w) {
		w.focus();
	}
}

function openClients(sector) {
	if (sector == "health") {
		popup("clients_healthcare.html", 396, 380, "clients");
	} else if (sector == "rec" || sector == "culture") {
		popup("clients_recreation_culture.html", 396, 380, "clients");
	} else if (sector == "corp" || sector == "edu") {
		popup("clients_corporate_education.html", 396, 380, "clients");
	} else if (sector == "lab" || sector == "research") {
		popup("clients_laboratory_research.html", 396, 380, "clients");
	} else if (sector == "corr") {
		popup("clients_corrections.html", 396, 380, "clients");
	} else {
		popup("clients_all.html", 396, 380, "clients");
	}
}
