function popupWindow() {
	 if (window.screen){
	 	var hori=screen.width;
	 	hori=hori*0.99;
	 	var verti=screen.height;
		verti=verti*0.85;
	 	var url = "/hrworks";
	 	newWindow = window.open(url, '', ' width='+hori+', height='+verti+', scrollbars=1, left='+(0)+', top='+(0)+', resizable=yes, status=yes');
	 	if (window.focus) {newWindow.focus();}
	 }
}
