function CS_IsFmtEmail(strEMailAddress)
{
	var objPattern1 = /(@.*@)|(\\.\\.)|(@\\.)|(^\\.)/;
	var objPattern2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");

	return (!objPattern1.test(strEMailAddress) && objPattern2.test(strEMailAddress));
}

function OpenWnd(p_strFileName, p_strWindowName, p_strWindowOptions, p_blnSetFocus)
{
	var wndPopup =
		window.open(p_strFileName, p_strWindowName, p_strWindowOptions);
	
	// Ensure that focus is set to the newly-opened window, if requested.
	if (p_blnSetFocus)
		wndPopup.focus();
		
	return (wndPopup);
}

function ShowPrintableCoupon()
{
	OpenWnd(
		"/assets/pgs/online_coupon_printable.htm",
		"wndPhotoAlbum",
		"toolbar=yes,status=yes,scrollbars=yes,resizable=yes,width=520,height=400,left=5,screenX=5,top=5,screenY=5",
		true);
}

function ShowCustomerLogin()
{
	OpenWnd(
		"/assets/pgs/vehicle_status_shell.htm",
		"wndCustomerLogin",
		"location=yes,toolbar=yes,status=yes,scrollbars=yes,resizable=yes,width=650,height=500,left=5,screenX=5,top=5,screenY=5",
		true);
}

function CS_HideIELinkFocus()
{
	for (var intLinkIdx in document.links)
		document.links[intLinkIdx].onfocus = document.links[intLinkIdx].blur;
}

if (document.all)
	document.onmousedown = CS_HideIELinkFocus;
