
//Validating Email Address
function validEmail(email) 
{

	var re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,6})+$/;

	return re.test(email);
}



function PopupWindow(url,width,height) 
{
	popupWin=window.open(url,"popupWin","status=yes,toolbar=no,directories=no,scrollbars=yes,menubar=no,resizable=yes,width=" + width + ",height=" +height)
	self.name="WinMain"
}


function PopupHelp(helpID,width,height) 
{
	popupWin=window.open('../CommonFiles/Help/HelpPopup.aspx?HelpID=' + helpID, "helpWin","status=yes,toolbar=no,directories=no,scrollbars=yes,menubar=no,resizable=yes,width=" + width + ",height=" +height)
	self.name="HelpMain"
}


function PrintPreviewWindow(url,width,height) 
{
	popupWin=open(url,"popupWin","status=no,toolbar=yes,directories=no,scrollbars=yes,menubar=no,resizable=yes,width=" + width + ",height=" +height)
	self.name="WinMain"
}


function CloseWindow()
{
	window.close();
}