function popFE(empName){
	var location;
	
	switch(empName){
		case 'nycdoe':
			location = 'nycdoe.html';
			break;
		case 'nyctf':
			location = 'nyctf.html';
			break;
		case 'mskcc':
			location = 'mskcc.html';
			break;
		case 'nys_omh':
			location = 'nys_omh.html';
			break;
	}
	
	//alert(location);
	window.open(location,'featuredWindow','width=650,height=400,resizable=no,scrollbars=yes');
	//featuredWindow.focus();
}

function setName() {
	window.name = "index";
	//alert(window.name);
}
