
function ChangeMultiSub(objSel,SubObjString,ArrString,SelectedLanguage, SelectedValue){var obj = getObj(SubObjString);obj.length = 1;
removeAllSelectChildrens(obj);
if(objSel.value > -1){populateSelect(obj, ArrString, SelectedValue, objSel.value, SelectedLanguage, null ,null, groupDoPopulate );}
else{populateSelect(obj, ArrString, SelectedValue, '1', SelectedLanguage, null ,null, groupDoPopulate );}}

function prepareInputsForHintsNew()
{
	var inputs = document.getElementsByTagName("input");
	for (var i=0; i<inputs.length; i++)
	{
		if (inputs[i].parentNode.getElementsByTagName("div")[0])
		{
			inputs[i].onfocus = function () 
			{
				this.parentNode.getElementsByTagName("div")[0].style.display = "inline";
			}
			inputs[i].onblur = function ()
			{
				this.parentNode.getElementsByTagName("div")[0].style.display = "none";
			}
				inputs[i].onkeydown = function ()
			{
				this.parentNode.getElementsByTagName("div")[0].style.display = "none";
			}
			
		}
	}
	var selects = document.getElementsByTagName("select");
	for (var k=0; k<selects.length; k++)
	{
		if (selects[k].parentNode.getElementsByTagName("div")[0])
		{
			if (selects[k].id == "ddlCountry")
			{
				selects[k].onfocus = function ()
				{
					this.parentNode.getElementsByTagName("div")[0].style.display = "inline";
					funShowCountryDrop();
				}
				selects[k].onblur = function ()
				{
					this.parentNode.getElementsByTagName("div")[0].style.display = "none";
					funHideCountryDrop();
				}
			}
			if (selects[k].id == "ddlLocation")
			{
				selects[k].onfocus = function ()
				{
					this.parentNode.getElementsByTagName("div")[0].style.display = "inline";
					funShowCityDrop();
				}
				selects[k].onblur = function ()
				{
					this.parentNode.getElementsByTagName("div")[0].style.display = "none";
					funHideCityDrop();
				}
			}
		}
	}
}


function funPassRange(obj)
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById(obj).value == "")
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Please type your password. <span id='spanPass' class='hint-pointerPassword'></span>";
		}
		else
		{
			if (document.getElementById(obj).value.length < 4 || document.getElementById(obj).value.length > 15)
			{
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = "Your password should be between 4 to 15 characters long. <span id='spanPass' class='hint-pointerPassword'></span>";
				document.frmRegistration.txtPassword.focus();
			}
			else
			{
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='hint-pointerPassword'></span>";
			}
		}
	}
	else
	{
		if (document.getElementById(obj).value == "")
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Please type your password. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			if (document.getElementById(obj).value.length < 4 || document.getElementById(obj).value.length > 15)
			{
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = "Your password should be between 4 to 15 characters long. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
				document.frmRegistration.txtPassword.focus();
			}
			else
			{
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
			}
		}
	}
} 




function funComparePass()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.frmRegistration.txtPassword.value != document.getElementById("txtConfirmPassword").value)
		{
			
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Your password and confirm password values don't match. <span id='spanPass' class='hint-pointerPassword'></span>";
			document.frmRegistration.txtPassword.focus();
		}
		else
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if(document.frmRegistration.txtPassword.value != document.getElementById("txtConfirmPassword").value)
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Your password and confirm password values don't match. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
			document.frmRegistration.txtPassword.focus();
		}
		else
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
		}
	}
} 



function funFirstName()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtFirstName").value == "")
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Please type your first name. <span id='spanFn' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Type your name. We do not recommend using nicknames because it can appear unprofessional. <span id='spanFn' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtFirstName").value == "")
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Please type your first name. <span id='spanFn' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Type your name. We do not recommend using nicknames because it can appear unprofessional. <span id='spanFn' class='Orangehint-pointerPassword'></span>";
		}
	}
} 



function funFnRange()
{
	
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtFirstName").value.length < 2)
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Your first name should be between 2 to 25 characters long. <span id='spanFn' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Type your name. We do not recommend using nicknames because it can appear unprofessional. <span id='spanFn' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtFirstName").value.length < 2)
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Your first name should be between 2 to 25 characters long. <span id='spanFn' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Type your name. We do not recommend using nicknames because it can appear unprofessional. <span id='spanFn' class='Orangehint-pointerPassword'></span>";
		}
	}
}


 function funInvalidFn()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateChar("name",document.getElementById("txtFirstName").value))
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Your first name should not contain any special characters. <span id='spanFn' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Type your name. We do not recommend using nicknames because it can appear unprofessional. <span id='spanFn' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if(!funValidateChar("name",document.getElementById("txtFirstName").value))
		{
			var divPass = document.getElementById("divFnCont"); 
			divPass.innerHTML = "Your first name should not contain any special characters. <span id='spanFn' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Type your name. We do not recommend using nicknames because it can appear unprofessional. <span id='spanFn' class='Orangehint-pointerPassword'></span>";
		}
	}
} 
 
 function funInvalidLn()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateChar("name",document.getElementById("txtLastName").value))
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Your last name should not contain any special characters. <span id='spanLn' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Type your surname/family name. <span id='spanLn' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if(!funValidateChar("name",document.getElementById("txtLastName").value))
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Your last name should not contain any special characters. <span id='spanLn' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Type your surname/family name. <span id='spanLn' class='Orangehint-pointerPassword'></span>";
		}
	}
}

function funConfPass()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtConfirmPassword").value == "")
		{
			var divPass = document.getElementById("divCPassCont");
			divPass.innerHTML = "Please type your password again. <span id='spanCPass' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divCPassCont");
			divPass.innerHTML = "Type your password again. <span id='spanCPass' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtConfirmPassword").value == "")
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Please type your password again. <span id='spanCPass' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Type your password again. <span id='spanCPass' class='Orangehint-pointerPassword'></span>";
		}
	}
}


function funInvalidPass()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateChar("pass",document.frmRegistration.txtPassword.value))
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Your password should not contain any special characters. <span id='spanPass' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='hint-pointerPassword'></span>"; 
		}
	}
	else
	{
		if(!funValidateChar("name",document.frmRegistration.txtPassword.value))
		{
			var divPass = document.getElementById("divPassCont"); 
			divPass.innerHTML = "Your password should not contain any special characters. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='Orangehint-pointerPassword'></span>"; 
		}
	}
}

 function funLnRange(){if (tabctr == 1 || tabctr == 4){if (document.getElementById("txtLastName").value.length < 2){ var divPass = document.getElementById("divLnCont");divPass.innerHTML = "Your last name should be between 2 to 25 characters long. <span id='spanLn' class='hint-pointerPassword'></span>"; document.getElementById("txtLastName").focus();}else{var divPass = document.getElementById("divLnCont");divPass.innerHTML = "Type your surname/family name. <span id='spanLn' class='hint-pointerPassword'></span>"; }}else{if (document.getElementById("txtLastName").value.length < 2){var divPass = document.getElementById("divLnCont"); divPass.innerHTML = "Your last name should be between 2 to 25 characters long. <span id='spanLn' class='Orangehint-pointerPassword'></span>"; document.getElementById("txtLastName").focus();}else{var divPass = document.getElementById("divLnCont");divPass.innerHTML = "Type your surname/family name. <span id='spanLn' class='Orangehint-pointerPassword'></span>"; }}} function funCountry(){if (tabctr == 1 || tabctr == 4){var obj = document.getElementById("divCountry");obj.style.display = "inline";}} function funCity(){if (tabctr == 1 || tabctr == 4){var obj = document.getElementById("divCity");obj.style.display = "inline";}} 

function funBlankEmail(){if (tabctr == 1 || tabctr == 4){if (document.getElementById("txtEmail").value == ""){var divMailC = document.getElementById("divMailCont");divMailC.innerHTML = "Please type your username/email. <div id='spanMail' class='hint-pointerEmail' ></div>";}else{var divMailC = document.getElementById("divMailCont");divMailC.innerHTML = "Please give you email id for correspondence. For e.g. Yahoo, Gmail etc. This will also be your username. <div id='spanMail' class='hint-pointerEmail' ></div>";}}else{if (document.getElementById("txtEmail").value == ""){var divMailC = document.getElementById("divMailCont");divMailC.innerHTML = "Please type your username/email. <div id='spanMail' class='Orangehint-pointerEmail' ></div>";}else{var divMailC = document.getElementById("divMailCont");		divMailC.innerHTML = "Please give you email id for correspondence. For e.g. Yahoo, Gmail etc. This will also be your username. <div id='spanMail' class='Orangehint-pointerEmail' ></div>";}}} 

function funShowCountryDrop()
{
	objCountry = document.getElementById("tdCountry");
	
	if (objCountry.className == "homeformRed")
	{
		document.getElementById("divCountry").style.display = "inline";
	}
	else
	{
		document.getElementById("divCountry").style.display = "none";
	}
	
}

function funShowCityDrop()
{
	objCity = document.getElementById("tdCity"); 
	if (objCity.className == "homeformRed")
	{
		document.getElementById("divCity").style.display = "inline";
	}
	else
	{
		document.getElementById("divCity").style.display = "none";
	}
}

function funHideCountryDrop()
{
	document.getElementById("divCountry").style.display = "none";

}
function funHideCityDrop()
{
document.getElementById("divCity").style.display = "none";
}
function funValidHomePage()
{
	objEmail = document.getElementById("tdEmail");
	objPass = document.getElementById("tdPass");
	objCPass = document.getElementById("tdCPass"); 
	objFname = document.getElementById("tdFname");
	objLname = document.getElementById("tdLname");
	objCountry = document.getElementById("tdCountry");
	objCity = document.getElementById("tdCity"); 
	objCode = document.getElementById("tdCode");
	objEmail.className = "homeform";
	objPass.className = "homeform";
	objCPass.className = "homeform";
	objFname.className = "homeform"; 
	objLname.className = "homeform";
	objCountry.className = "homeform";
	objCity.className = "homeform";
	objCode.className = "homeform"; 
	
	var shdPost;shdPost = true;
	if (!document.getElementById("cbTerms").checked)
	{
		document.getElementById("cbTerms").focus();
		shdPost = false;
	}
	if (document.getElementById("txtCaptcha").value == "")
	{
		objCode.className = "homeformRed";
		document.getElementById("txtCaptcha").focus(); 
		shdPost = false;
	}
	if (document.getElementById("ddlLocation").value=="-1")
	{
		funCity();
		objCity.className = "homeformRed";document.getElementById("ddlLocation").focus(); 
		shdPost = false;
	}
	if (document.getElementById("ddlCountry").value=="-1")
	{
		funCountry();
		objCountry.className = "homeformRed";
		document.getElementById("ddlCountry").focus(); 
		shdPost = false;
	}
	if (document.getElementById("txtLastName").value != "")
	{
		if (document.getElementById("txtLastName").value.length < 2)
		{
			funLnRange();
			objLname.className = "homeformRed";
			document.getElementById("txtLastName").focus();
			shdPost = false;
		}
		else if(!funValidateChar("name",document.getElementById("txtLastName").value))
		{
			funInvalidLn();
			objLname.className = "homeformRed";
			document.getElementById("txtLastName").focus();
			shdPost = false;
		}
		if (document.getElementById("txtLastName").value.length < 2) 
			funLnRange();
		else funInvalidLn();
	}
	else
	{
		if (tabctr == 1 || tabctr == 4)
		{
			var divPass = document.getElementById("divLnCont");divPass.innerHTML = "Type your surname/family name. <span id='spanLn' class='hint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divLnCont");divPass.innerHTML = "Type your surname/family name. <span id='spanLn' class='Orangehint-pointerPassword'></span>"; 
		}
	}
	
	if (document.getElementById("txtFirstName").value == "")
	{
		funFirstName();
		objFname.className = "homeformRed";
		document.getElementById("txtFirstName").focus(); 
		shdPost = false;
	}
	else if (document.getElementById("txtFirstName").value.length < 2)
	{
		
		funFnRange();
		objFname.className = "homeformRed";
		document.getElementById("txtFirstName").focus(); 
		shdPost = false;
	}
	else if(!funValidateChar("name",document.getElementById("txtFirstName").value))
	{
		
		funInvalidFn();
		objFname.className = "homeformRed"; 
		document.getElementById("txtFirstName").focus();
		shdPost = false;
	}
	
	
	if (document.getElementById("txtFirstName").value != "" && document.getElementById("txtFirstName").value.length < 2)
	{
		funFnRange(); 
	}
	else if (document.getElementById("txtFirstName").value != "" && document.getElementById("txtFirstName").value.length > 1)
		funInvalidFn();
	
	if (document.frmRegistration.txtPassword.value == "")
	{
		funPassRange("txtPassword");
		objPass.className = "homeformRed";
		document.frmRegistration.txtPassword.focus(); 
		shdPost = false;
	}
	else if (document.frmRegistration.txtPassword.value.length < 4)
	{
		funPassRange("txtPassword");
		objPass.className = "homeformRed"; 
		document.frmRegistration.txtPassword.focus();
		shdPost = false;
	}
	else if (!funValidateChar("pass",document.frmRegistration.txtPassword.value))
	{
		funInvalidPass();
		objPass.className = "homeformRed";document.frmRegistration.txtPassword.focus();
		shdPost = false;
	}
	else
	{
		if (tabctr == 1 || tabctr == 4) 
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='hint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Choose a password that's easy to remember, but difficult for people to guess. Your password can be 4 to 15 characters long and should not contain any special characters. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
		}
	}
	if (document.frmRegistration.txtPassword.value != "" && document.frmRegistration.txtPassword.value.length >= 4)
	{
		if (document.getElementById("txtConfirmPassword").value == "")
		{
			funConfPass();
			objCPass.className = "homeformRed";
			document.getElementById("txtConfirmPassword").focus(); 
			shdPost = false;
		}
		else
		{
			if (document.frmRegistration.txtPassword.value != document.getElementById("txtConfirmPassword").value)
				{
					funComparePass(); 
					objPass.className = "homeformRed";
					objCPass.className = "homeformRed";
					document.frmRegistration.txtPassword.focus();
					shdPost = false; 
				}
		}
		
		if (document.getElementById("txtConfirmPassword").value != "")
		{
			funConfPass();
		}	
		
	}
	
	if (document.getElementById("txtEmail").value == "")
	{
		funBlankEmail();
		objEmail.className = "homeformRed";
		document.getElementById("txtEmail").focus();
		shdPost = false; 
	}
	else
	{
		if(!validateEmail(document.getElementById("txtEmail").value))
		{
			funCheckEmail();
			objEmail.className = "homeformRed";
			document.getElementById("txtEmail").focus(); 
			shdPost = false;
		}
		else
		funBlankEmail();
		
	}
	
	if (shdPost)
	{
		LeadPush();
		return true;
	}
	else
	{
		return false;
	}
	
} 

/** AJAX AutoComplete Functions **/
var isIE;
function initRequest() {
	if (window.XMLHttpRequest) {
		return new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		isIE = true;
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
}

function LeadPush()
{
	var url = "LeadPush.asp?VendorId="+ document.frmRegistration.VendorId.value +"&txtEmail="+ document.frmRegistration.txtEmail.value +"&txtPassword="+ document.frmRegistration.txtPassword.value +"&txtConfirmPassword="+ document.frmRegistration.txtConfirmPassword.value +"&txtFirstName="+ document.frmRegistration.txtFirstName.value +"&txtLastName="+ document.frmRegistration.txtLastName.value +"&CellPhone="+ document.frmRegistration.CellPhone.value +"&ddlCountry="+ document.frmRegistration.ddlCountry.value +"&ddlLocation="+ document.frmRegistration.ddlLocation.value +"&txtCaptcha="+ document.frmRegistration.txtCaptcha.value;
	var req = initRequest();
	req.open("POST", url, true);//async call
	req.send(null);
}
/** AJAX AutoComplete Functions Ends**/


function funEMailFocus()
{
	document.getElementById('txtEmail').focus();
	
}

function browserName(){var browserName = "";var ua = navigator.userAgent.toLowerCase();if ( ua.indexOf( "opera" ) != -1 ){browserName = "opera";} else if (ua.indexOf("msie")!=-1){browserName = "msie";}else if ( ua.indexOf( "safari" ) != -1 ){browserName = "safari";}else if ( ua.indexOf( "mozilla" ) != -1 ) {if ( ua.indexOf("firefox")!=-1){browserName = "firefox";}else{browserName = "mozilla";}}return browserName;}; 

function funBrowserType(){var brName;brName = browserName();var obj = document.getElementById("ostate");if (brName == "msie"){obj.style.visibility="hidden"; obj.style.position="absolute";obj.style.top="205px";obj.style.left="115px";}if (brName == "firefox"){obj.style.visibility="hidden"; obj.style.position="absolute";obj.style.top="190px"; obj.style.left="117px";}if (brName == "opera"){obj.style.visibility="hidden"; obj.style.position="absolute";obj.style.top="192px";obj.style.left="116px"; }if (brName == "safari"){obj.style.visibility="hidden"; obj.style.position="absolute";obj.style.top="187px";obj.style.left="117px";}} 


function funChangeDivCalssOrange(){var divFn,divFnT,divFnC,divFnB,spanFn;var divLn,divLnT,divLnC,divLnB,spanLn;var divMail,divMailT,divMailC,divMailB,spanMail; var divPass,divPassT,divPassC,divPassB,spanPass;var divCPass,divCPassT,divCPassC,divCPassB,spanCPass;var divCode,divCodeT,divCodeC,divCodeB,spanCode; var divCountry,divCountryT,divCountryC,divCountryB,spanCountry;var divCity,divCityT,divCityC,divCityB,spanCity;var divTc,divTcT,divTcC,divTcB,spanTc; divFn = document.getElementById("divFirstName");divFnT = document.getElementById("divFnTop");divFnC = document.getElementById("divFnCont");divFnB = document.getElementById("divFnBtm"); spanFn = document.getElementById("spanFn");divFn.className = 'OrangehintContainer';divFnT.className = 'OrangehintTop';divFnC.className = 'OrangehintContent';divFnB.className = 'OrangehintBtm'; spanFn.className = 'Orangehint-pointerFName';divLn = document.getElementById("divLastName");divLnT = document.getElementById("divLnTop");divLnC = document.getElementById("divLnCont"); divLnB = document.getElementById("divLnBtm");spanLn = document.getElementById("spanLn");divLn.className = 'OrangehintContainer';divLnT.className = 'OrangehintTop';divLnC.className = 'OrangehintContent'; divLnB.className = 'OrangehintBtm';spanLn.className = 'Orangehint-pointerLName';divMail  = document.getElementById("divEmail");divMailT = document.getElementById("divMailTop");divMailC = document.getElementById("divMailCont"); divMailB = document.getElementById("divMailBtm");spanMail = document.getElementById("spanMail");divMail.className = 'OrangehintContainer';divMailT.className = 'OrangehintTop';divMailC.className = 'OrangehintContent'; divMailB.className = 'OrangehintBtm';spanMail.className = 'Orangehint-pointerEmail';divPass = document.getElementById("divPassword");divPassT = document.getElementById("divPassTop"); divPassC = document.getElementById("divPassCont");divPassB = document.getElementById("divPassBtm");spanPass = document.getElementById("spanPass");divPass.className = 'OrangehintContainer'; divPassT.className = 'OrangehintTop';divPassC.className = 'OrangehintContent';divPassB.className = 'OrangehintBtm';spanPass.className = 'Orangehint-pointerPassword '; divCPass = document.getElementById("divConfPassword");divCPassT = document.getElementById("divCPassTop");divCPassC = document.getElementById("divCPassCont"); divCPassB = document.getElementById("divCPassBtm");spanCPass = document.getElementById("spanCPass");divCPass.className = 'OrangehintContainer'; divCPassT.className = 'OrangehintTop';divCPassC.className = 'OrangehintContent';divCPassB.className = 'OrangehintBtm';spanCPass.className = 'Orangehint-pointerConfPassword '; divCode = document.getElementById("divCaptcha");divCodeT = document.getElementById("divCodeTop");divCodeC = document.getElementById("divCodeCont");divCodeB = document.getElementById("divCodeBtm"); spanCode = document.getElementById("spanCode");divCode.className = 'OrangehintContainer';divCodeT.className = 'OrangehintTop';divCodeC.className = 'OrangehintContent'; divCodeB.className = 'OrangehintBtm';spanCode.className = 'Orangehint-pointerCode';divCountry = document.getElementById("divCountry");divCountryT = document.getElementById("divCountryTop"); divCountryC = document.getElementById("divCountryCont");divCountryB = document.getElementById("divCountryBtm");spanCountry = document.getElementById("spanCountry");divCountry.className = 'OrangehintContainer'; divCountryT.className = 'OrangehintTop';divCountryC.className = 'OrangehintContent';divCountryB.className = 'OrangehintBtm';spanCountry.className = 'Orangehint-pointerCountry'; divCity = document.getElementById("divCity");divCityT = document.getElementById("divCityTop");divCityC = document.getElementById("divCityCont"); divCityB = document.getElementById("divCityBtm");spanCity = document.getElementById("spanCity");divCity.className = 'OrangehintContainer'; divCityT.className = 'OrangehintTop';divCityC.className = 'OrangehintContent';divCityB.className = 'OrangehintBtm';spanCity.className = 'Orangehint-pointerCity'; divTc = document.getElementById("divTc");divTcT = document.getElementById("divTcTop");divTcC = document.getElementById("divTcCont");divTcB = document.getElementById("divTcBtm"); spanTc = document.getElementById("spanTC");divTc.className = 'OrangehintContainer';divTcT.className = 'OrangehintTop';divTcC.className = 'OrangehintContent'; divTcB.className = 'OrangehintBtm';spanTc.className = 'Orangehint-pointerTc';} 

function funChangeDivCalssBlue()
{
	var divFn,divFnT,divFnC,divFnB,spanFn;
	var divLn,divLnT,divLnC,divLnB,spanLn;
	var divMail,divMailT,divMailC,divMailB,spanMail; 
	var divPass,divPassT,divPassC,divPassB,spanPass;
	var divCPass,divCPassT,divCPassC,divCPassB,spanCPass;
	var divCode,divCodeT,divCodeC,divCodeB,spanCode; 
	var divCountry,divCountryT,divCountryC,divCountryB,spanCountry;
	var divCity,divCityT,divCityC,divCityB,spanCity;
	var divTc,divTcT,divTcC,divTcB,spanTc; 
	
	divFn = document.getElementById("divFirstName");
	divFnT = document.getElementById("divFnTop");
	divFnC = document.getElementById("divFnCont");
	divFnB = document.getElementById("divFnBtm"); 
	spanFn = document.getElementById("spanFn");
	divFn.className = 'hintContainer';
	divFnT.className = 'hintTop';
	divFnC.className = 'hintContent';
	divFnB.className = 'hintBtm'; 
	spanFn.className = 'hint-pointerFName';
	
	divLn = document.getElementById("divLastName");
	divLnT = document.getElementById("divLnTop");
	divLnC = document.getElementById("divLnCont"); 
	divLnB = document.getElementById("divLnBtm");
	spanLn = document.getElementById("spanLn");
	divLn.className = 'hintContainer';
	divLnT.className = 'hintTop'; 
	divLnC.className = 'hintContent';
	divLnB.className = 'hintBtm';
	spanLn.className = 'hint-pointerLName';
	
	divMail  = document.getElementById("divEmail"); divMailT = document.getElementById("divMailTop");divMailC = document.getElementById("divMailCont");divMailB = document.getElementById("divMailBtm"); spanMail = document.getElementById("spanMail");divMail.className = 'hintContainer';divMailT.className = 'hintTop';divMailC.className = 'hintContent'; divMailB.className = 'hintBtm';spanMail.className = 'hint-pointerEmail';divPass = document.getElementById("divPassword");divPassT = document.getElementById("divPassTop"); divPassC = document.getElementById("divPassCont");divPassB = document.getElementById("divPassBtm");spanPass = document.getElementById("spanPass"); divPass.className = 'hintContainer';divPassT.className = 'hintTop';divPassC.className = 'hintContent';divPassB.className = 'hintBtm';spanPass.className = 'hint-pointerPassword '; divCPass = document.getElementById("divConfPassword");divCPassT = document.getElementById("divCPassTop");divCPassC = document.getElementById("divCPassCont"); divCPassB = document.getElementById("divCPassBtm");spanCPass = document.getElementById("spanCPass");divCPass.className = 'hintContainer';divCPassT.className = 'hintTop'; divCPassC.className = 'hintContent';divCPassB.className = 'hintBtm';spanCPass.className = 'hint-pointerConfPassword ';divCode = document.getElementById("divCaptcha"); divCodeT = document.getElementById("divCodeTop");divCodeC = document.getElementById("divCodeCont");divCodeB = document.getElementById("divCodeBtm");spanCode = document.getElementById("spanCode"); divCode.className = 'hintContainer';divCodeT.className = 'hintTop';divCodeC.className = 'hintContent';divCodeB.className = 'hintBtm';spanCode.className = 'hint-pointerCode'; divCountry = document.getElementById("divCountry");divCountryT = document.getElementById("divCountryTop");divCountryC = document.getElementById("divCountryCont");divCountryB = document.getElementById("divCountryBtm"); spanCountry = document.getElementById("spanCountry");divCountry.className = 'hintContainer';divCountryT.className = 'hintTop';divCountryC.className = 'hintContent';divCountryB.className = 'hintBtm'; spanCountry.className = 'hint-pointerCountry';divCity = document.getElementById("divCity");divCityT = document.getElementById("divCityTop");divCityC = document.getElementById("divCityCont"); divCityB = document.getElementById("divCityBtm");spanCity = document.getElementById("spanCity");divCity.className = 'hintContainer';divCityT.className = 'hintTop'; divCityC.className = 'hintContent';divCityB.className = 'hintBtm';spanCity.className = 'hint-pointerCity';divTc = document.getElementById("divTc"); divTcT = document.getElementById("divTcTop");divTcC = document.getElementById("divTcCont");divTcB = document.getElementById("divTcBtm");spanTc = document.getElementById("spanTC"); divTc.className = 'hintContainer';divTcT.className = 'hintTop';divTcC.className = 'hintContent';divTcB.className = 'hintBtm';spanTc.className = 'hint-pointerTc';} 


