// pop-up a new window to show staff infomation
function popupInfo(id){
	var win = window.open("/info/staff/staffInfo.php?id=" + id, "win", "height=600, width=600, toolbar=0, menubar=0, resizable=1, scrollbars=1");
	win.focus();	
}