/**
 * @author jimi the bush
 */
// New Signup
function fncNewSignup(){
	ScreenWidth=840;
	ScreenHeight=500;
	ScreenWidthCenter=(window.screen.width/2)-(ScreenWidth/2)-4;
	ScreenHeightCenter=(window.screen.height/2)-(ScreenHeight/2)-43;
	EditWindow=window.open("../information_message.html","NewFamilyRegistration","Height="+ScreenHeight+", Width="+ScreenWidth+", Left="+ScreenWidthCenter+", Top="+ScreenHeightCenter+", toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, copyhistory=yes, resizable=yes");
	EditWindow.focus();
}
// New Single Registration
function fncNewSingleRegistration(){
	ScreenWidth=777;
	ScreenHeight=500;
	ScreenWidthCenter=(window.screen.width/2)-(ScreenWidth/2)-4;
	ScreenHeightCenter=(window.screen.height/2)-(ScreenHeight/2)-43;
	EditWindow=window.open("https://www.diveassure.com/ver1.1/registrations/single/registration_step1.asp?referrer=","NewSingleRegistration","Height="+ScreenHeight+", Width="+ScreenWidth+", Left="+ScreenWidthCenter+", Top="+ScreenHeightCenter+", toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, copyhistory=yes, resizable=yes");
	EditWindow.focus();
}
// New Family Registration
function fncNewFamilyRegistration(){
	ScreenWidth=840;
	ScreenHeight=500;
	ScreenWidthCenter=(window.screen.width/2)-(ScreenWidth/2)-4;
	ScreenHeightCenter=(window.screen.height/2)-(ScreenHeight/2)-43;
	EditWindow=window.open("https://www.diveassure.com/ver1.1/registrations/family/registration_step1.asp?referrer=","NewFamilyRegistration","Height="+ScreenHeight+", Width="+ScreenWidth+", Left="+ScreenWidthCenter+", Top="+ScreenHeightCenter+", toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, copyhistory=yes, resizable=yes");
	EditWindow.focus();
}
// New Family Registration
function fncGetAQuote(){
	ScreenWidth=840;
	ScreenHeight=500;
	ScreenWidthCenter=(window.screen.width/2)-(ScreenWidth/2)-4;
	ScreenHeightCenter=(window.screen.height/2)-(ScreenHeight/2)-43;
	EditWindow=window.open("https://www.diveassure.com/ver1.1/registrations/quote/quote_step1.asp","NewQuote","Height="+ScreenHeight+", Width="+ScreenWidth+", Left="+ScreenWidthCenter+", Top="+ScreenHeightCenter+", toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, copyhistory=yes, resizable=yes");
	EditWindow.focus();
}
function Toggle(divID) {
	var div = document.getElementById(divID);
	var Parent = div.parentNode;
	div.style.display =
		div.style.display == "" ? "none" : "";
	Parent.style.backgroundColor = 
	    Parent.style.backgroundColor == "" ? "#ffffff" : "";
}

/* mailTo function */
function InsertMailToTag( userName, domainName, lnkTxt)
{
var EmailId;
var atSign = "&#64;"
var fullStop = "&#46";

EmailId = userName;
EmailId = "" + EmailId + atSign; 
EmailId = EmailId + domainName;

document.write( "<a href='mail" + "to:" + EmailId + "'>" + lnkTxt
+"</a>" );
}