function popup(url,w,h){
var left = (screen.availWidth/2) - (w/2);
var top = (screen.availHeight/2) - (h/2);
window.open(url,'Insert','width='+w+',height='+h+',scrollbars=yes,status=0,left='+left+',top='+top)
}

function popLink(url) {
window.opener.location = url;
window.close();
}

function toggleField(val,id) {
	if (val=='Other' || val=='Yes' || val=='SpecificEmployee' && val!='') {
		document.getElementById(id).style.display='';
		document.getElementById(id).value='';
	} else {
		document.getElementById(id).style.display='none';
	}
}

