function openPopup(sURL, bScroll, nWidth, nHeight, windowName, menuOn, locationOn, toolBar)
{
	if (windowName == null)	windowName = "_blank";
	var temp = window.open(sURL, windowName, "height=" + nHeight + ",width=" + nWidth + ",resizable=yes,status=no,toolbar=" + (toolBar == true ? "yes" : "no") + ",menubar=" + (menuOn == true ? "yes" : "no") + ",location=" + (locationOn == true ? "yes" : "no") + ",scrollbars=" + (bScroll == true ? "yes" : "no"));
	temp.opener = self;
}