var newWindow='';

function staffWindow(doc_root, type) {
	
	
	//window.alert("HelloWorld");

    if(!newWindow.closed && newWindow.location) {
		newWindow.location = doc_root+"/pgs/staffMembers.php?staff_id="+type;
		newWindow.focus();
	}
	else {
		newWindow = window.open(doc_root+"/pgs/staffMembers.php?staff_id="+type, "adultAdd", "width=400,height=400,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,screenX=100,screenY=100");
	}

}

