function ShowStaff(empid){
var intEmp = empid;
var pxWidth;
var pxHeight;
	pxWidth = (window.screen.width/2) - (122 + 10);
	pxHeight = (window.screen.height/2) - (27 + 50);

	if (intBrowser > 0){ 
		// IE
		window.showModalDialog("/apps/staff/content/staffcon.asp?staff_id="+intEmp,"","dialogWidth:350px;dialogHeight:220px;center:yes;status:no");
	}
	else{
		// NETSCAPE
		window.open("/apps/staff/content/staffcon.asp?staff_id="+intEmp,"","width=320,height=160,resizable=no,status=no,left=" + pxWidth + "px,top=" + pxHeight + "px,screenX=" + pxWidth + "px,screenY=" + pxHeight + "px,scrollbars=no");
	}
}

