function popupWindow(url, width, height)
{
	win = window.open(url,'window','toolbar=0,status=0,menubar=0,resizable=0,scrollbars=yes,width=' + width + ',height=' + height + ''); 
}

function popupWindowNoScroll(url, width, height)
{
	win = window.open(url,'window','toolbar=0,status=0,menubar=0,resizable=0,scrollbars=no,width=' + width + ',height=' + height + ''); 
}

function staffProfileNewWindow(imgName)
{
	var newWindow, windowLoc;
	windowLoc = "/wmscripts/AdminGenerator/staffProfileManager/display-img.htm?" + imgName;
	newWindow = window.open(windowLoc,"Image","toolbar=no,menubar=no,location=0,directories=0");
}