function openPopup(id)
{
	popupCore('prowestPop', 'prowestPopup.php?id='+id, 650, 440, 'toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No');
}

function openWindow(address)
{
	popupCore('prowestPop', address, self.screen.width-100, self.screen.height-100, 'toolbar=Yes,location=Yes,status=Yes,resizable=Yes,fullscreen=No,scrollbars=Yes');
}

function popupCore(winname, address, winWidth, winHeight, extras)
{
	var x                   = (self.screen.width - winWidth) / 2;
	var y                   = (self.screen.height - winHeight) / 2;

	prowestPop=window.open(address,winname,'width='+winWidth+',height='+winHeight+',left='+x+',top='+y+','+extras);
	if (prowestPop != null) {
		prowestPop.focus();
		return true;
	}
	return false;
}

function launchSite()
{
	popupCore('prowestMain', 'flash.html', self.screen.width, self.screen.height, 'toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No');
}
