function funNumeric(val)
{
	regex = /^([0-9]+)$/;
	if (!regex.test(val))
		return false;
	else
		return true;	
} 

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 );}}

/*&inserted code start */

function funPass(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='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "";
		}
	}
	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
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "";
		}
	}
} 



function funPassRange(obj)
{
	
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById(obj).value.length < 4 )
			{ 
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = "Your password should be Minimum 4 characters long. <span id='spanPass' class='hint-pointerPassword'></span>";
				document.frmRegistration.txtPassword.focus();
			}
			else
			{
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = " ";
			}
	}
	else
	{
		if (document.getElementById(obj).value.length < 4 )
			{ 
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = "Your password should be Minimum 4 characters long. <span id='spanPass' class='hint-pointerPassword'></span>";
				document.frmRegistration.txtPassword.focus();
			}
			else
			{
				var divPass = document.getElementById("divPassCont");
				divPass.innerHTML = " ";
			}
	}
}
/*Inserted code end*/

function funComparePass()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.frmRegistration.txtPassword.value != document.getElementById("txtConfirmPassword").value)
		{
			
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "'Password' and 'Confirm password' doesnot match. <span id='spanPass' class='hint-pointerPassword'></span>";
			document.frmRegistration.txtPassword.focus();
		}
		else
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Your password should be Minimum 4 characters long . <span id='spanPass' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if(document.frmRegistration.txtPassword.value != document.getElementById("txtConfirmPassword").value)
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "'Password' and 'Confirm password' doesnot match. <span id='spanPass' class='Orangehint-pointerPassword'></span>";
			document.frmRegistration.txtPassword.focus();
		}
		else
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "Your password should be Minimum 4 characters long . <span id='spanPass' 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 = "";
		}
	}
	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 = "";
		}
	}
}
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-pointerFName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtFirstName").value == "")
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Please type your first name. <span id='spanFn' class='Orangehint-pointerFName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "";
		}
	}
} 



function funFnRange()
{
	
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtFirstName").value.length < 3)
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Your first name should be minimum 3 characters long. <span id='spanFn' class='hint-pointerFName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "<span id='spanFn' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtFirstName").value.length < 3)
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "Your first name should be minimum 3 characters long. <span id='spanFn' class='Orangehint-pointerFName'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "<span id='spanFn' class='hint-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 or Numbers. <span id='spanFn' class='hint-pointerFName'></span>";
		}
		else
		{   //alert(funValidateChar("name",document.getElementById("txtFirstName").value));
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateChar("name",document.getElementById("txtFirstName").value))
		{
			var divPass = document.getElementById("divFnCont"); 
			divPass.innerHTML = "Your first name should not contain any special characters or Numbers. <span id='spanFn' class='Orangehint-pointerFName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divFnCont");
			divPass.innerHTML = "";
		}
	}
} 



function funUnioth()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_uni1").value == "")
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "Please type University name. <span id='spanUnioth' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni1").value == "")
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "Please type University name. <span id='spanUnioth' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "";
		}
	}
} 



function funUniothRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_uni1").value.length < 2)
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUnioth' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUnioth' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni1").value.length < 2)
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUnioth' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUnioth' class='hint-pointerPassword'></span>";
		}
	}
}


 function funInvalidUnioth()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni1").value))
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spanUnioth' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni1").value))
		{
			var divPass = document.getElementById("divUniothCont"); 
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spanUnioth' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothCont");
			divPass.innerHTML = "";
		}
	}
} 
function funUniothm()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_uni1m").value == "")
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "Please type University name. <span id='spanUniothm' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni1m").value == "")
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "Please type University name. <span id='spanUniothm' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "";
		}
	}
} 



function funUniothmRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_uni1m").value.length < 2)
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothm' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothm' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni1m").value.length < 2)
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothm' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothm' class='hint-pointerPassword'></span>";
		}
	}
}


 function funInvalidUniothm()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni1m").value))
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spanUniothm' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni1m").value))
		{
			var divPass = document.getElementById("divUniothmCont"); 
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spanUniothm' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "";
		}
	}
} 

function funUniothb()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_uni1b").value == "")
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "Please type University name. <span id='spanUniothb' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothmCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni1b").value == "")
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "Please type University name. <span id='spanUniothb' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "";
		}
	}
} 



function funUniothbRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_uni1b").value.length < 2)
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothb' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothb' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni1b").value.length < 2)
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothb' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spanUniothb' class='hint-pointerPassword'></span>";
		}
	}
}


 function funInvalidUniothb()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni1b").value))
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spanUniothb' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni1b").value))
		{
			var divPass = document.getElementById("divUniothbCont"); 
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spanUniothb' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divUniothbCont");
			divPass.innerHTML = "";
		}
	}
} 
function fungraUnioth()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_uni").value == "")
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "Please type University name. <span id='spangraUnioth' class='hint-pointergraUnioth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni").value == "")
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "Please type University name. <span id='spangraUnioth' class='Orangehint-pointergraUnioth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "";
		}
	}
} 
function fungraUniothRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_uni").value.length < 2)
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spangraUnioth' class='hint-pointergraUnioth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spangraUnioth' class='hint-pointergraUnioth'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_uni").value.length < 2)
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spangraUnioth' class='Orangehint-pointergraUnioth'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "Your University name should be Minimum 2 characters long. <span id='spangraUnioth' class='hint-pointergraUnioth'></span>";
		}
	}
}


 function funInvalidgraUnioth()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni").value))
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spangraUnioth' class='hint-pointergraUnioth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_uni").value))
		{
			var divPass = document.getElementById("divgraUniothCont"); 
			divPass.innerHTML = "Your University name should contain only '.,&' special characters others not allowed. <span id='spangraUnioth' class='Orangehint-pointergraUnioth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraUniothCont");
			divPass.innerHTML = "";
		}
	}
} 

function funStucoll()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_stu").value == "")
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucoll' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stu").value == "")
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucoll' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "";
		}
	}
} 
function funStucollRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_stu").value.length < 2)
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucoll' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucoll' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stu").value.length < 2)
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucoll' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucoll' class='hint-pointerPassword'></span>";
		}
	}
}


 function funInvalidStucoll()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stu").value))
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucoll' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stu").value))
		{
			var divPass = document.getElementById("divStucollCont"); 
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucoll' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "";
		}
	}
} 
function funStucollm()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_stum").value == "")
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucollm' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stum").value == "")
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucollm' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "";
		}
	}
} 
function funStucollmRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_stum").value.length < 2)
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollm' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollm' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stum").value.length < 2)
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollm' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollm' class='hint-pointerPassword'></span>";
		}
	}
}


 function funInvalidStucollm()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stum").value))
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucollm' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stum").value))
		{
			var divPass = document.getElementById("divStucollmCont"); 
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucollm' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollmCont");
			divPass.innerHTML = "";
		}
	}
} 
function funStucollb()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_stub").value == "")
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucollb' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stub").value == "")
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucollb' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "";
		}
	}
} 
function funStucollbRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_stub").value.length < 2)
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollb' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollb' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stub").value.length < 2)
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollb' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollb' class='hint-pointerPassword'></span>";
		}
	}
}


 function funInvalidStucollb()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stub").value))
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucollb' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stub").value))
		{
			var divPass = document.getElementById("divStucollbCont"); 
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucollb' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollbCont");
			divPass.innerHTML = "";
		}
	}
} 
function funStucollc()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_stuc").value == "")
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucollc' class='hint-pointerStucollc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stuc").value == "")
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "Please Enter College. <span id='spanStucollc' class='Orangehint-pointerStucollc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "";
		}
	}
} 
function funStucollcRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_stuc").value.length < 2)
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollc' class='hint-pointerStucollc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollc' class='hint-pointerStucollc'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_stuc").value.length < 2)
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollc' class='Orangehint-pointerStucollc'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanStucollc' class='hint-pointerStucollc'></span>";
		}
	}
}


 function funInvalidStucollc()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stuc").value))
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucollc' class='hint-pointerStucollc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_stuc").value))
		{
			var divPass = document.getElementById("divStucollcCont"); 
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanStucollc' class='Orangehint-pointerStucollc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollcCont");
			divPass.innerHTML = "";
		}
	}
} 

function funAspcoll()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtcollege").value == "")
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "Please Enter College. <span id='spanAspcoll' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtcollege").value == "")
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "Please Enter College. <span id='spanAspcoll' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "";
		}
	}
} 
function funAspcollRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtcollege").value.length < 2)
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanAspcoll' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanAspcoll' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtcollege").value.length < 2)
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanAspcoll' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanAspcoll' class='hint-pointerPassword'></span>";
		}
	}
}


 function funInvalidAspcoll()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtcollege").value))
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanAspcoll' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtcollege").value))
		{
			var divPass = document.getElementById("divAspcollCont"); 
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanAspcoll' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspcollCont");
			divPass.innerHTML = "";
		}
	}
}
function funAspqual()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtaspqual").value == "")
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "Please Enter Qualification. <span id='spanAspqual' class='hint-pointerAspqual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtaspqual").value == "")
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "Please Enter Qualification. <span id='spanAspqual' class='Orangehint-pointerAspqual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "";
		}
	}
} 
function funAspqualRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtaspqual").value.length < 2)
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanAspqual' class='hint-pointerAspqual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanAspqual' class='hint-pointerAspqual'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtaspqual").value.length < 2)
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanAspqual' class='Orangehint-pointerAspqual'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanAspqual' class='hint-pointerAspqual'></span>";
		}
	}
}


 function funInvalidAspqual()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtaspqual").value))
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "Your Qualification should contain only '.,&' special characters others not allowed. <span id='spanAspqual' class='hint-pointerAspqual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtaspqual").value))
		{
			var divPass = document.getElementById("divAspqualCont"); 
			divPass.innerHTML = "Your Qualification should contain only '.,&' special characters others not allowed. <span id='spanAspqual' class='Orangehint-pointerAspqual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divAspqualCont");
			divPass.innerHTML = "";
		}
	}
}
function funcorcoll()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_col").value == "")
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "Please Enter College. <span id='spanCorcoll' class='hint-pointerCorcoll'></span>";
		}
		else
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_col").value == "")
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "Please Enter College. <span id='spanCorcoll' class='Orangehint-pointerCorcoll'></span>";
		}
		else
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "";
		}
	}
} 
function funcorcollRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_col").value.length < 2)
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanCorcoll' class='hint-pointerCorcoll'></span>";
		}
		else
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanCorcoll' class='hint-pointerCorcoll'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_col").value.length < 2)
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanCorcoll' class='Orangehint-pointerCorcoll'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spanCorcoll' class='hint-pointerCorcoll'></span>";
		}
	}
}


 function funInvalidcorcoll()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_col").value))
		{
			var divPass = document.getElementById("divStucollCont");
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanCorcoll' class='hint-pointerCorcoll'></span>";
		}
		else
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_col").value))
		{
			var divPass = document.getElementById("divCorcollCont"); 
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spanCorcoll' class='Orangehint-pointerCorcoll'></span>";
		}
		else
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "";
		}
	}
}

function fungracoll()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_gra").value == "")
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "Please Enter College. <span id='spangraColl' class='hint-pointergraColl'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_gra").value == "")
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "Please Enter College. <span id='spangraColl' class='Orangehint-pointergraColl'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "";
		}
	}
} 
function fungracollRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_gra").value.length < 2)
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spangraColl' class='hint-pointergraColl'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spangraColl' class='hint-pointergraColl'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_gra").value.length < 2)
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spangraColl' class='Orangehint-pointergraColl'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "Your College name should be Minimum 2 characters long. <span id='spangraColl' class='hint-pointergraColl'></span>";
		}
	}
}


 function funInvalidgracoll()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_gra").value))
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spangraColl' class='hint-pointergraColl'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_gra").value))
		{
			var divPass = document.getElementById("divgraCollCont"); 
			divPass.innerHTML = "Your College name should contain only '.,&' special characters others not allowed. <span id='spangraColl' class='Orangehint-pointergraColl'></span>";
		}
		else
		{
			var divPass = document.getElementById("divgraCollCont");
			divPass.innerHTML = "";
		}
	}
}
function funcorposoth()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtOther_pos").value == "")
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "Please enter Your Position. <span id='spancorPosoth' class='hint-pointercorPosoth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtOther_pos").value == "")
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "Please enter Your Position. <span id='spancorPosoth' class='Orangehint-pointercorPosoth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "";
		}
	}
} 



function funcorposothRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtOther_pos").value.length < 2)
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "Your Position name should be Minimum 2 characters long. <span id='spancorPosoth' class='hint-pointercorPosoth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "Your Position name should be Minimum 2 characters long. <span id='spancorPosoth' class='hint-pointercorPosoth'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtOther_pos").value.length < 2)
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "Your Position name should be Minimum 2 characters long. <span id='spancorPosoth' class='Orangehint-pointercorPosoth'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "Your Position name should be Minimum 2 characters long. <span id='spancorPosoth' class='hint-pointercorPosoth'></span>";
		}
	}
}


 function funInvalidcorposoth()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_pos").value))
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "Your Position name should contain only '.,&' special characters others not allowed. <span id='spancorPosoth' class='hint-pointercorPosoth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtOther_pos").value))
		{
			var divPass = document.getElementById("divcorPosothCont"); 
			divPass.innerHTML = "Your Position name should contain only '.,&' special characters others not allowed. <span id='spancorPosoth' class='Orangehint-pointercorPosoth'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcorPosothCont");
			divPass.innerHTML = "";
		}
	}
} 
function funorsqual()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtqual1").value == "")
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "Please Enter Qualification. <span id='spanorsQual' class='hint-pointerorsQual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtqual1").value == "")
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "Please Enter Qualification. <span id='spanorsQual' class='Orangehint-pointerorsQual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divCorcollCont");
			divPass.innerHTML = "";
		}
	}
} 
function funorsqualRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtqual1").value.length < 2)
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanorsQual' class='hint-pointerorsQual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanorsQual' class='hint-pointerorsQual'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtqual1").value.length < 2)
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanorsQual' class='Orangehint-pointerorsQual'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "Your Qualification should be Minimum 2 characters long. <span id='spanorsQual' class='hint-pointerorsQual'></span>";
		}
	}
}


 function funInvalidorsqual()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtqual1").value))
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "Your Qualification should contain only '.,&' special characters others not allowed. <span id='spanorsQual' class='hint-pointerorsQual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtqual1").value))
		{
			var divPass = document.getElementById("divorsQualCont"); 
			divPass.innerHTML = "Your Qualification should contain only '.,&' special characters others not allowed. <span id='spanorsQual' class='Orangehint-pointerorsQual'></span>";
		}
		else
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "";
		}
	}
}
function funcomname()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtcompany_name").value == "")
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "Please Enter Company Name. <span id='spancomName' class='hint-pointercomName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divorsQualCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtcompany_name").value == "")
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "Please Enter Company Name. <span id='spancomName' class='Orangehint-pointercomName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "";
		}
	}
} 
function funcomnameRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtcompany_name").value.length < 2)
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "Your Company Name should be Minimum 2 characters long. <span id='spancomName' class='hint-pointercomName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "Your Company name should be Minimum 2 characters long. <span id='spancomName' class='hint-pointercomName'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtcompany_name").value.length < 2)
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "Your Company name should be Minimum 2 characters long. <span id='spancomName' class='Orangehint-pointercomName'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "Your Company name should be Minimum 2 characters long. <span id='spancomName' class='hint-pointercomName'></span>";
		}
	}
}


 function funInvalidcomname()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtcompany_name").value))
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "Your Company name should contain only '.,&' special characters others not allowed. <span id='spancomName' class='hint-pointercomName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtcompany_name").value))
		{
			var divPass = document.getElementById("divcomNameCont"); 
			divPass.innerHTML = "Your Company name should contain only '.,&' special characters others not allowed. <span id='spancomName' class='Orangehint-pointercomName'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomNameCont");
			divPass.innerHTML = "";
		}
	}
}
function funcomcity()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtCity").value == "")
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "Please Enter City. <span id='spancomCity' class='hint-pointercomCity'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtCity").value == "")
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "Please Enter City. <span id='spancomCity' class='Orangehint-pointercomCity'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "";
		}
	}
} 
function funcomcityRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtCity").value.length < 2)
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "Your City should be Minimum 2 characters long. <span id='spancomCity' class='hint-pointercomCity'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "Your City should be Minimum 2 characters long. <span id='spancomCity' class='hint-pointercomCity'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtCity").value.length < 2)
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "Your City should be Minimum 2 characters long. <span id='spancomCity' class='Orangehint-pointercomCity'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "Your City should be Minimum 2 characters long. <span id='spancomCity' class='hint-pointercomCity'></span>";
		}
	}
}


 function funInvalidcomcity()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtCity").value))
		{
			var divPass = document.getElementById("divcomCityCont");
	divPass.innerHTML = "Your City should contain only '.,&' special characters others not allowed. <span id='spancomCity' class='hint-pointercomCity'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtCity").value))
		{
			var divPass = document.getElementById("divcomCityCont"); 
			divPass.innerHTML = "Your City should contain only '.,&' special characters others not allowed. <span id='spancomCity' class='Orangehint-pointercomCity'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomCityCont");
			divPass.innerHTML = "";
		}
	}
}
function funcomdesc()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtcompany_desc").value == "")
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "Please Enter Description. <span id='spancomDesc' class='hint-pointercomDesc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtcompany_desc").value == "")
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "Please Enter Description. <span id='spancomDesc' class='Orangehint-pointercomDesc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "";
		}
	}
} 
function funcomdescRange()
{
	
	if (tabctr == 1 || tabctr == 2)
	{
		if (document.getElementById("txtcompany_desc").value.length < 2)
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "Your description should be Minimum 2 characters long. <span id='spancomDesc' class='hint-pointercomDesc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "Your description should be Minimum 2 characters long. <span id='spancomDesc' class='hint-pointercomDesc'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtcompany_desc").value.length < 2)
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "Your description should be Minimum 2 characters long. <span id='spancomDesc' class='Orangehint-pointercomDesc'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "Your description should be Minimum 2 characters long. <span id='spancomDesc' class='hint-pointercomDesc'></span>";
		}
	}
}


 function funInvalidcomdesc()
 {
	if (tabctr == 1 || tabctr == 4)
	{
		if(!funValidateCharQual("name",document.getElementById("txtcompany_desc").value))
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "Your description should contain only '.,&' special characters others not allowed. <span id='spancomDesc' class='hint-pointercomDesc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if(!funValidateCharQual("name",document.getElementById("txtcompany_desc").value))
		{
			var divPass = document.getElementById("divcomDescCont"); 
			divPass.innerHTML = "Your description should contain only '.,&' special characters others not allowed. <span id='spancomDesc' class='Orangehint-pointercomDesc'></span>";
		}
		else
		{
			var divPass = document.getElementById("divcomDescCont");
			divPass.innerHTML = "";
		}
	}
}
function funEmail()
{   // alert("funmail");
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtEmail").value == "")
		{  
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "Please type your Email Id. <span id='spanMail' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtEmail").value == "")
		{
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "Please type your Email Id. <span id='spanMail' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "";
		}
	}
} 
function funEmailRange()
{ 
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtEmail").value.length < 7)
		{  //alert("emailrange");
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "Your Email Id should be Minimum 7 characters long. <span id='spanMail' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "Your Email Id should be Minimum 7 characters long. <span id='spanMail' class='hint-pointerPassword'></span>";
		}
	}
	else
	{
		if (document.getElementById("txtEmail").value.length < 7)
		{
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "Your Email Id should be Minimum 7 characters long. <span id='spanMail' class='Orangehint-pointerPassword'></span>"; 
		}
		else
		{
			var divPass = document.getElementById("divMailCont");
			divPass.innerHTML = "Your Email Id should be Minimum 7 characters long. <span id='spanMail' class='hint-pointerPassword'></span>";
		}
	}
}
function funInvalidEmail()
{
	if (tabctr == 1 || tabctr == 4)
	{
	var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
   var address = document.frmRegistration.txtEmail.value;
				   if(reg.test(address) == false) {
					   //alert(reg.test(address));
					  var divPass = document.getElementById("divMailCont");
					   divPass.innerHTML = "Invalid E-mail ID. <span id='spanMail' class='hint-pointerPassword'></span>";
					  	                              }
								  else
									{  //alert(reg.test(address));
										var divPass = document.getElementById("divMailCont");
										divPass.innerHTML = "";
										objEmail.className = "homeform";
									}
	}
	else 
	{
		var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
      var address = document.frmRegistration.txtEmail.value;
				   if(reg.test(address) == false) {
					  var divPass = document.getElementById("divMailCont");
					   divPass.innerHTML = "Invalid E-mail ID. <span id='spanMail' class='hint-pointerPassword'></span>";
																	  }			  else
									{  //alert(reg.test(address));
										var divPass = document.getElementById("divMailCont");
										divPass.innerHTML = "";
										objEmail.className = "homeform";
									}
	}
}
 /*Inserted code start*/
 function funLastName()
{
	if (tabctr == 1 || tabctr == 4)
	{
		if (document.getElementById("txtLastName").value == "")
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Please type your Last name. <span id='spanLn' class='hint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "";
		}
	}
	else
	{
		if (document.getElementById("txtLastName").value == "")
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "Please type your Last name. <span id='spanLn' class='Orangehint-pointerPassword'></span>";
		}
		else
		{
			var divPass = document.getElementById("divLnCont");
			divPass.innerHTML = "";
		}
	}
} 

/*inserted code end*/
 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 = "";
		}
	}
	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 = "";
		}
	}
}



 function funLnRange(){if (tabctr == 1 || tabctr == 4){if (document.getElementById("txtLastName").value.length < 3){ var divPass = document.getElementById("divLnCont");divPass.innerHTML = "Your last name should be Minimum 3 characters long. <span id='spanLn' class='hint-pointerPassword'></span>"; document.frmRegistration.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 < 3){var divPass = document.getElementById("divLnCont"); divPass.innerHTML = "Your last name should be Minimum 3 characters long. <span id='spanLn' class='Orangehint-pointerPassword'></span>"; document.frmRegistration.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 funState(){if (tabctr == 1 || tabctr == 4){var obj = document.getElementById("divState");obj.style.display = "inline";}} 
 


function funValidHomePage()
{ 
	objFname = document.getElementById("tdFname");
	objLname = document.getElementById("tdLname");
	objMob = document.getElementById("tdMobile");
	objEmail = document.getElementById("tdEmail");
	objPass = document.getElementById("tdPass");
	objCPass = document.getElementById("tdCPass");
	objCode = document.getElementById("tdCode");
	objLst = document.getElementById("tdLst");
	objTc = document.getElementById("tdTc"); 
	objBranch = document.getElementById("tdBranch");
	objUni = document.getElementById("tdUni");
	objDob = document.getElementById("tdDob");
	objUnioth = document.getElementById("tdUnioth");
	objState = document.getElementById("tdState");
	objDist = document.getElementById("tdDist");
	objColl = document.getElementById("tdColl");
	objStucoll = document.getElementById("tdStucoll");
	objStatem = document.getElementById("tdStatem");
	objDistm = document.getElementById("tdDistm");
	objCollm = document.getElementById("tdCollm");
	objStucollm = document.getElementById("tdStucollm");
	objUnim = document.getElementById("tdUnim");
	objUniothm = document.getElementById("tdUniothm");
	objBranchm = document.getElementById("tdBranchm");
	objStateb = document.getElementById("tdStateb");
	objDistb = document.getElementById("tdDistb");
	objCollb = document.getElementById("tdCollb");
	objStucollb = document.getElementById("tdStucollb");
	objUnib = document.getElementById("tdUnib");
	objUniothb = document.getElementById("tdUniothb");
	objBranchb = document.getElementById("tdBranchb");
	objStatec = document.getElementById("tdStatec");
	objDistc = document.getElementById("tdDistc");
	objCollc = document.getElementById("tdCollc");
	objStucollc = document.getElementById("tdStucollc");
	objAspcoll = document.getElementById("tdAspcoll");
	objAspqual = document.getElementById("tdAspqual");
	objaspState = document.getElementById("tdaspState");
	objaspDist = document.getElementById("tdaspDist");
	objcorState = document.getElementById("tdcorState");
	objcorDist = document.getElementById("tdcorDist");
	objCorcoll = document.getElementById("tdCorcoll");
	objCorcolloth = document.getElementById("tdCorcolloth");
	objcorPos = document.getElementById("tdcorPos");
	objcorPosoth = document.getElementById("tdcorPosoth");
	objorsState = document.getElementById("tdorsState");
	objorsCity = document.getElementById("tdorsCity");
	objorsQual = document.getElementById("tdorsQual");
	objcomCity = document.getElementById("tdcomCity");
	objcomName = document.getElementById("tdcomName");
	objcomState = document.getElementById("tdcomState");
	objcomDesc = document.getElementById("tdcomDesc");
	objgraState = document.getElementById("tdgraState");
	objgraUni = document.getElementById("tdgraUni");
	objgraDist = document.getElementById("tdgraDist");
	objgraColl = document.getElementById("tdgraColl");
	objgraCourse = document.getElementById("tdgraCourse");
	objgraUnioth = document.getElementById("tdgraUnioth");
	objgraColloth = document.getElementById("tdgraColloth");
	/*objYOJ = document.getElementById("tdYOJ");*/
	objYOS = document.getElementById("tdYOS");
	
	objFname.className = "homeform"; 
	objLname.className = "homeform";
	objMob.className = "homeform";
	objEmail.className = "homeform";
	objPass.className = "homeform";
	objCPass.className = "homeform";
	objCode.className = "homeform";
	objLst.className = "homeform";
	objTc.className = "homeform";
	objBranch.className = "homeform";
	/*objYOJ.className = "homeform";*/
	objYOS.className = "homeform";
	objUni.className = "homeform";
	objDob.className = "homeform";
	objUnioth.className = "homeform";
	objState.className = "homeform";
	objDist.className = "homeform";
	objColl.className = "homeform";
	objStucoll.className = "homeform";
	objAspcoll.className = "homeform";
	objAspqual.className = "homeform";
	objaspState.className = "homeform";
	objaspDist.className = "homeform";
	objcorState.className = "homeform";
	objcorDist.className = "homeform";
	objCorcoll.className = "homeform";
	objCorcolloth.className = "homeform";
	objcorPos.className = "homeform";
	objcorPosoth.className = "homeform";
	objorsState.className = "homeform";
	objorsCity.className = "homeform";
	objorsQual.className = "homeform";
	objcomCity.className = "homeform";
	objcomName.className = "homeform";
	objcomState.className = "homeform";
	objcomDesc.className = "homeform";
	objgraState.className = "homeform";
	objgraUni.className = "homeform";
	objgraDist.className = "homeform";
	objgraColl.className = "homeform";
	objgraColloth.className = "homeform";
	objgraCourse.className = "homeform";
	objgraUnioth.className = "homeform";
	objStatem.className = "homeform";
	objDistm.className = "homeform";
	objCollm.className = "homeform";
	objStucollm.className = "homeform";
	objUnim.className = "homeform";
	objUniothm.className = "homeform";
	objBranchm.className = "homeform";
	objStateb.className = "homeform";
	objDistb.className = "homeform";
	objCollb.className = "homeform";
	objStucollb.className = "homeform";
	objUnib.className = "homeform";
	objUniothb.className = "homeform";
	objBranchb.className = "homeform";
	objStatec.className = "homeform";
	objDistc.className = "homeform";
	objCollc.className = "homeform";
	objStucollc.className = "homeform";
	
	
	var shdPost;shdPost = true;
	/*inserted code start*/
 var iChars = '&\/""';
  for (var i = 0; i < document.frmRegistration.txtPassword.value.length; i++) {
  	if (iChars.indexOf(document.frmRegistration.txtPassword.value.charAt(i)) != -1) {
  	alert (" &,\,/,double quotes in password are not allowed.");
   shdPost = false;
  	} }

		 	if (document.getElementById("lstType").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divCityCont");
		divPass.innerHTML = "Please Select Usertype.  <span id='spanCity' class='hint-pointerCity'></span>";
		objLst.className = "homeformRed";
		document.frmRegistration.lstType.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCityCont");
		divPass.innerHTML = "";
	}
	if(document.getElementById("lstType").value == 1) {
		function getCheckedValue(radioObj) {
	if(!radioObj)
		return "";
	var radioLength = radioObj.length;
	if(radioLength == undefined)
		if(radioObj.checked)
			return radioObj.value;
		else
			return "";
	for(var i = 0; i < radioLength; i++) {
		if(radioObj[i].checked) {
			return radioObj[i].value;
		}
	}
	return "";
}

    var rating=getCheckedValue(document.forms['frmRegistration'].elements['rbStudy']);
	
   if(rating=="")
   {
   alert("Please Select a Option");
   shdPost = false;
   }
   //alert(rating);
     
}   
    if(rating == "BTech") {
		  	if (document.getElementById("lststate_stu").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divStateCont");
		divPass.innerHTML = "Please Select State.  <span id='spanState' class='hint-pointerState'></span>";
		objState.className = "homeformRed";
		document.frmRegistration.lststate_stu.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divStateCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("lstdistrict_stu").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divDistCont");
		divPass.innerHTML = "Please Select District.  <span id='spanDist' class='hint-pointerDist'></span>";
		objDist.className = "homeformRed";
		document.frmRegistration.lstdistrict_stu.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divDistCont");
		divPass.innerHTML = "";
	}
	/*if (document.getElementById("lstyear_of_join").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divYOJ");
		divPass.innerHTML = "Please Select Year of Admission.  <span id='spanYOJ' class='hint-pointerYOJ'></span>";
		objYOJ.className = "homeformRed";
		document.frmRegistration.lstyear_of_join.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divYOJ");
		divPass.innerHTML = "";
	}
	*/
	if (document.getElementById("lstyear_of_study").value == "-1")
	{  
		var divPass = document.getElementById("divYOSCont");
		divPass.innerHTML = "Please Select Year of Study.   <span id='spanYOS' class='hint-pointerYOS'></span>";
		objYOS.className = "homeformRed";
		document.frmRegistration.lstyear_of_study.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divYOSCont");
		divPass.innerHTML = "<span id='spanYOS' class='hint-pointerYOS'></span>";
	}
	if (document.getElementById("lstcollege_stu").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divCollCont");
		divPass.innerHTML = "Please Select College.  <span id='spanColl' class='hint-pointerColl'></span>";
		objColl.className = "homeformRed";
		document.frmRegistration.lstcollege_stu.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCollCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("txtOther_stu").value == "")
	{   
		funStucoll();
		objStucoll.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_stu").value.length < 2)
	{ 		
		funStucollRange();
		objStucoll.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_stu").value))
	{   funInvalidStucoll();
		objStucoll.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_stu").value != "" && document.getElementById("txtOther_stu").value.length < 2)
	{
		funStucollRange();

	}
	else if (document.getElementById("txtOther_stu").value != "" && document.getElementById("txtOther_stu").value.length > 2)
		funInvalidStucoll(); 
	
	if (document.getElementById("lstBranch").value == "-1")
	{  
		var divPass = document.getElementById("divCountryCont");
		divPass.innerHTML = "Please Select Branch.   <span id='spanCountry' class='hint-pointerCountry'></span>";
		objBranch.className = "homeformRed";
		document.frmRegistration.lstBranch.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCountryCont");
		divPass.innerHTML = "";
	}
	
		if (document.getElementById("lstuniversity_stu").value == "-1")
	{  
		var divPass = document.getElementById("divUniCont");
		divPass.innerHTML = "Please Select University.   <span id='spanUni' class='hint-pointerUni'></span>";
		objUni.className = "homeformRed";
		document.frmRegistration.lstuniversity_stu.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divUniCont");
		divPass.innerHTML = "<span id='spanUni' class='hint-pointerUni'></span>";
	}
	if (document.getElementById("txtOther_uni1").value == "")
	{   
		funUnioth();
		objUnioth.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_uni1").value.length < 2)
	{ 		
		funUniothRange();
		objUnioth.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_uni1").value))
	{   funInvalidUnioth();
		objUnioth.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_uni1").value != "" && document.getElementById("txtOther_uni1").value.length < 2)
	{
		funUniothRange();

	}
	else if (document.getElementById("txtOther_uni1").value != "" && document.getElementById("txtOther_uni1").value.length > 2)
		funInvalidUnioth();
	}
	 if(rating == "MTech") {
 if (document.getElementById("lststate_stum").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divStatemCont");
		divPass.innerHTML = "Please Select State.  <span id='spanStatem' class='hint-pointerStatem'></span>";
		objStatem.className = "homeformRed";
		document.frmRegistration.lststate_stum.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divStatemCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("lstdistrict_stum").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divDistmCont");
		divPass.innerHTML = "Please Select District.  <span id='spanDistm' class='hint-pointerDistm'></span>";
		objDistm.className = "homeformRed";
		document.frmRegistration.lstdistrict_stum.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divDistmCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("lstcollege_stum").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divCollmCont");
		divPass.innerHTML = "Please Select College.  <span id='spanCollm' class='hint-pointerCollm'></span>";
		objCollm.className = "homeformRed";
		document.frmRegistration.lstcollege_stum.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCollmCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("txtOther_stum").value == "")
	{   
		funStucollm();
		objStucollm.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_stum").value.length < 2)
	{ 		
		funStucollmRange();
		objStucollm.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_stum").value))
	{   funInvalidStucollm();
		objStucollm.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_stum").value != "" && document.getElementById("txtOther_stum").value.length < 2)
	{
		funStucollmRange();

	}
	else if (document.getElementById("txtOther_stum").value != "" && document.getElementById("txtOther_stum").value.length > 2)
		funInvalidStucollm(); 
	
	if (document.getElementById("lstBranchm").value == "-1")
	{  
		var divPass = document.getElementById("divCountrymCont");
		divPass.innerHTML = "Please Select Branch.   <span id='spanCountrym' class='hint-pointerCountrym'></span>";
		objBranchm.className = "homeformRed";
		document.frmRegistration.lstBranchm.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCountrymCont");
		divPass.innerHTML = "";
	}
	
		if (document.getElementById("lstuniversity_stum").value == "-1")
	{  
		var divPass = document.getElementById("divUnimCont");
		divPass.innerHTML = "Please Select University.   <span id='spanUnim' class='hint-pointerUnim'></span>";
		objUnim.className = "homeformRed";
		document.frmRegistration.lstuniversity_stum.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divUnimCont");
		divPass.innerHTML = "<span id='spanUnim' class='hint-pointerUnim'></span>";
	}
	if (document.getElementById("txtOther_uni1m").value == "")
	{   
		funUniothm();
		objUniothm.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_uni1m").value.length < 2)
	{ 		
		funUniothmRange();
		objUniothm.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_uni1m").value))
	{   funInvalidUniothm();
		objUniothm.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_uni1m").value != "" && document.getElementById("txtOther_uni1m").value.length < 2)
	{
		funUniothmRange();

	}
	else if (document.getElementById("txtOther_uni1m").value != "" && document.getElementById("txtOther_uni1m").value.length > 2)
		funInvalidUniothm();
	 }
	  if(rating == "MBA") {
		  if (document.getElementById("lststate_stub").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divStatebCont");
		divPass.innerHTML = "Please Select State.  <span id='spanStateb' class='hint-pointerStateb'></span>";
		objStateb.className = "homeformRed";
		//document.frmRegistration.lststate_stub.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divStatebCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("lstdistrict_stub").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divDistbCont");
		divPass.innerHTML = "Please Select District.  <span id='spanDistb' class='hint-pointerDistb'></span>";
		objDistb.className = "homeformRed";
		//document.frmRegistration.lstdistrict_stub.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divDistbCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("lstcollege_stub").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divCollbCont");
		divPass.innerHTML = "Please Select College.  <span id='spanCollbm' class='hint-pointerCollb'></span>";
		objCollb.className = "homeformRed";
		//document.frmRegistration.lstcollege_stub.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCollbCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("txtOther_stub").value == "")
	{   
		funStucollb();
		objStucollb.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_stub").value.length < 2)
	{ 		
		funStucollbRange();
		objStucollb.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_stub").value))
	{   funInvalidStucollb();
		objStucollb.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_stub").value != "" && document.getElementById("txtOther_stub").value.length < 2)
	{
		funStucollbRange();

	}
	else if (document.getElementById("txtOther_stub").value != "" && document.getElementById("txtOther_stub").value.length > 2)
		funInvalidStucollb(); 
	
	if (document.getElementById("lstBranchb").value == "-1")
	{  
		var divPass = document.getElementById("divCountrybCont");
		divPass.innerHTML = "Please Select Branch.   <span id='spanCountryb' class='hint-pointerCountryb'></span>";
		objBranchb.className = "homeformRed";
		//document.frmRegistration.lstBranchb.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCountrybCont");
		divPass.innerHTML = "";
	}
	
		if (document.getElementById("lstuniversity_stub").value == "-1")
	{  
		var divPass = document.getElementById("divUnimCont");
		divPass.innerHTML = "Please Select University.   <span id='spanUnib' class='hint-pointerUnib'></span>";
		objUnib.className = "homeformRed";
		//document.frmRegistration.lstuniversity_stub.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divUnibCont");
		divPass.innerHTML = "<span id='spanUnib' class='hint-pointerUnib'></span>";
	}
	
	if (document.getElementById("txtOther_uni1b").value == "")
	{   
		funUniothb();
		objUniothb.className = "homeformRed";
		shdPost = false;
	}
	else if (document.getElementById("txtOther_uni1b").value.length < 2)
	{ 		
		funUniothbRange();
		objUniothb.className = "homeformRed";
		shdPost = false;
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_uni1b").value))
	{   funInvalidUniothb();
		objUniothb.className = "homeformRed"; 
		shdPost = false;
	
	}
	if (document.getElementById("txtOther_uni1b").value != "" && document.getElementById("txtOther_uni1b").value.length < 2)
	{
		funUniothbRange();
	}
	else if (document.getElementById("txtOther_uni1b").value != "" && document.getElementById("txtOther_uni1b").value.length > 2)
		funInvalidUniothb();
}
	   if(rating == "MCA") {
		if (document.getElementById("lststate_stuc").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divStatecCont");
		divPass.innerHTML = "Please Select State.  <span id='spanStatec' class='hint-pointerStatec'></span>";
		objStatec.className = "homeformRed";
		document.frmRegistration.lststate_stuc.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divStatecCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("lstdistrict_stuc").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divDistcCont");
		divPass.innerHTML = "Please Select District.  <span id='spanDistc' class='hint-pointerDistc'></span>";
		objDistc.className = "homeformRed";
		document.frmRegistration.lstdistrict_stuc.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divDistcCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("lstcollege_stuc").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divCollcCont");
		divPass.innerHTML = "Please Select College.  <span id='spanCollc' class='hint-pointerCollc'></span>";
		objCollc.className = "homeformRed";
		document.frmRegistration.lstcollege_stuc.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCollcCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("txtOther_stuc").value == "")
	{   
		funStucollc();
		objStucollc.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_stuc").value.length < 2)
	{ 		
		funStucollcRange();
		objStucollc.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_stuc").value))
	{   funInvalidStucollc();
		objStucollc.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_stuc").value != "" && document.getElementById("txtOther_stuc").value.length < 2)
	{
		funStucollcRange();

	}
	else if (document.getElementById("txtOther_stuc").value != "" && document.getElementById("txtOther_stuc").value.length > 2)
		funInvalidStucollc(); 
} 
 if(rating == "Others") {
if (document.getElementById("lststate_ou").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divorsStateCont");
		divPass.innerHTML = "Please Select State.  <span id='spanorsState' class='hint-pointerorsState'></span>";
		objorsState.className = "homeformRed";
		document.frmRegistration.lststate_ou.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divorsStateCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("lstdistrict_ou").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divorsCityCont");
		divPass.innerHTML = "Please Select District.  <span id='spanorsCity' class='hint-pointerorsCity'></span>";
		objorsCity.className = "homeformRed";
		document.frmRegistration.lstdistrict_ou.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divorsCityCont");
		divPass.innerHTML = "";
	}
	  if (document.getElementById("txtqual1").value == "")
	{   
		funorsqual();
		objorsQual.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtqual1").value.length < 2)
	{ 		
		funorsqualRange();
		objorsQual.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtqual1").value))
	{   funInvalidorsqual();
		objorsQual.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtqual1").value != "" && document.getElementById("txtqual1").value.length < 2)
	{
		funorsqualRange();

	}
	else if (document.getElementById("txtqual1").value != "" && document.getElementById("txtqual1").value.length > 2)
		funInvalidorsqual();
}
if(document.getElementById("lstType").value == 2) { 
if (document.getElementById("lststate_asp").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divaspStateCont");
		divPass.innerHTML = "Please Select State.  <span id='spanaspState' class='hint-pointeraspState'></span>";
		objaspState.className = "homeformRed";
		document.frmRegistration.lststate_asp.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divaspStateCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("lstdistrict_asp").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divaspDistCont");
		divPass.innerHTML = "Please Select District.  <span id='spanaspDist' class='hint-pointeraspDist'></span>";
		objaspDist.className = "homeformRed";
		document.frmRegistration.lstdistrict_asp.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divaspDistCont");
		divPass.innerHTML = "";
	}
 
	if (document.getElementById("txtcollege").value == "")
	{   
		funAspcoll();
		objAspcoll.className = "homeformRed";
		shdPost = false;
	}
	else if (document.getElementById("txtcollege").value.length < 2)
	{ 		
		funAspcollRange();
		objAspcoll.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtcollege").value))
	{   funInvalidAspcoll();
		objAspcoll.className = "homeformRed"; 
		shdPost = false;
	}
	if (document.getElementById("txtcollege").value != "" && document.getElementById("txtcollege").value.length < 2)
	{
		funAspcollRange();
	}
	else if (document.getElementById("txtcollege").value != "" && document.getElementById("txtcollege").value.length > 2)
		funInvalidAspcoll(); 
	
	if (document.getElementById("txtaspqual").value == "")
	{   
		funAspqual();
		objAspqual.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtaspqual").value.length < 2)
	{ 		
		funAspqualRange();
		objAspqual.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtaspqual").value))
	{   funInvalidAspqual();
		objAspqual.className = "homeformRed"; 
		shdPost = false;
	}
	if (document.getElementById("txtaspqual").value != "" && document.getElementById("txtaspqual").value.length < 2)
	{
		funAspqualRange();
	}
	else if (document.getElementById("txtaspqual").value != "" && document.getElementById("txtaspqual").value.length > 2)
		funInvalidAspqual(); 
}

if(document.getElementById("lstType").value == 4) { 
if (document.getElementById("lststate_col").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divcorStateCont");
		divPass.innerHTML = "Please Select State.  <span id='spancorState' class='hint-pointercorState'></span>";
		objcorState.className = "homeformRed";
		document.frmRegistration.lststate_col.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divcorStateCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("lstdistrict_col").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divcorDistCont");
		divPass.innerHTML = "Please Select District.  <span id='spancorDist' class='hint-pointercorDist'></span>";
		objcorDist.className = "homeformRed";
		document.frmRegistration.lstdistrict_col.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divcorDistCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("lstcollege_col").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divCorcollCont");
		divPass.innerHTML = "Please Select College.  <span id='spanCorcoll' class='hint-pointerCorcoll'></span>";
		objCorcoll.className = "homeformRed";
		document.frmRegistration.lstcollege_col.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCorcollCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("txtOther_col").value == "")
	{   
		funcorcoll();
		objCorcoll.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_col").value.length < 2)
	{ 		
		funcorcollRange();
		objCorcoll.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_col").value))
	{   funInvalidcorcoll();
		objCorcoll.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_col").value != "" && document.getElementById("txtOther_col").value.length < 2)
	{
		funcorcollRange();

	}
	else if (document.getElementById("txtOther_col").value != "" && document.getElementById("txtOther_col").value.length > 2)
		funInvalidcorcoll(); 
	if (document.getElementById("lstposition").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divcorPosCont");
		divPass.innerHTML = "Please Select Position.  <span id='spancorPos' class='hint-pointercorPos'></span>";
		objcorPos.className = "homeformRed";
		document.frmRegistration.lstposition.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divcorPosCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("txtOther_pos").value == "")
	{   
		funcorposoth();
		objcorPosoth.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_pos").value.length < 2)
	{ 		
		funcorposothRange();
		objcorPosoth.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_pos").value))
	{   funInvalidcorposoth();
		objcorPosoth.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_pos").value != "" && document.getElementById("txtOther_pos").value.length < 2)
	{
		funcorposothRange();

	}
	else if (document.getElementById("txtOther_pos").value != "" && document.getElementById("txtOther_pos").value.length > 2)
		funInvalidcorposoth(); 
}
if(document.getElementById("lstType").value == 5) { 
if (document.getElementById("lststate_com").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divcomStateCont");
		divPass.innerHTML = "Please Select State.  <span id='spancomState' class='hint-pointercomState'></span>";
		objcomState.className = "homeformRed";
		document.frmRegistration.lststate_com.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divcomStateCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("txtCity").value == "")
	{   
		funcomcity();
		objcomCity.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtCity").value.length < 2)
	{ 		
		funcomcityRange();
		objcomCity.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtCity").value))
	{   funInvalidcomcity();
		objcomCity.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtCity").value != "" && document.getElementById("txtCity").value.length < 2)
	{
		funcomcity();

	}
	else if (document.getElementById("txtCity").value != "" && document.getElementById("txtCity").value.length > 2)
		funInvalidcomcity(); 
		
  if (document.getElementById("txtcompany_name").value == "")
	{   
		funcomname();
		objcomName.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtcompany_name").value.length < 2)
	{ 		
		funcomnameRange();
		objcomName.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtcompany_name").value))
	{   funInvalidcomname();
		objcomName.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtcompany_name").value != "" && document.getElementById("txtcompany_name").value.length < 2)
	{
		funcomname();

	}
	else if (document.getElementById("txtcompany_name").value != "" && document.getElementById("txtcompany_name").value.length > 2)
		funInvalidcomname();
	if (document.getElementById("txtcompany_desc").value == "")
	{   
		funcomdesc();
		objcomDesc.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtcompany_desc").value.length < 2)
	{ 		
		funcomdescRange();
		objcomDesc.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtcompany_desc").value))
	{   funInvalidcomdesc();
		objcomDesc.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtcompany_desc").value != "" && document.getElementById("txtcompany_desc").value.length < 2)
	{
		funcomdesc();

	}
	else if (document.getElementById("txtcompany_desc").value != "" && document.getElementById("txtcompany_desc").value.length > 2)
		funInvalidcomdesc();
}
if(document.getElementById("lstType").value == 3) {
	if (document.getElementById("lststate_gra").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divgraStateCont");
		divPass.innerHTML = "Please Select State.  <span id='spangraState' class='hint-pointergraState'></span>";
		objgraState.className = "homeformRed";
		document.frmRegistration.lststate_gra.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divgraStateCont");
		divPass.innerHTML = "";
	}
	
	if (document.getElementById("lstdistrict_gra").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divgraDistCont");
		divPass.innerHTML = "Please Select District.  <span id='spangraDist' class='hint-pointergraDist'></span>";
		objgraDist.className = "homeformRed";
		document.frmRegistration.lstdistrict_gra.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divgraDistCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("lstcollege_gra").value == "-1")
	{  //alert(shdPost);
		var divPass = document.getElementById("divgraCollCont");
		divPass.innerHTML = "Please Select College.  <span id='spangraColl' class='hint-pointergraColl'></span>";
		objgraColl.className = "homeformRed";
		document.frmRegistration.lstcollege_gra.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divCollCont");
		divPass.innerHTML = "";
	}
	if (document.getElementById("txtOther_gra").value == "")
	{   
		fungracoll();
		objgraColloth.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_gra").value.length < 2)
	{ 		
		fungracollRange();
		objgraColloth.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_gra").value))
	{   funInvalidgracoll();
		objgraColloth.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_gra").value != "" && document.getElementById("txtOther_gra").value.length < 2)
	{
		fungracollRange();

	}
	else if (document.getElementById("txtOther_gra").value != "" && document.getElementById("txtOther_gra").value.length > 2)
		funInvalidgracoll(); 
	
	if (document.getElementById("lstcourse").value == "-1")
	{  
		var divPass = document.getElementById("divgraCourseCont");
		divPass.innerHTML = "Please Select Course.   <span id='spangraCourse' class='hint-pointergraCourse'></span>";
		objgraCourse.className = "homeformRed";
		document.frmRegistration.lstcourse.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divgraCourseCont");
		divPass.innerHTML = "";
	}
		if (document.getElementById("lstuniversity_gra").value == "-1")
	{  
		var divPass = document.getElementById("divgraUniCont");
		divPass.innerHTML = "Please Select University.   <span id='spangraUni' class='hint-pointergraUni'></span>";
		objgraUni.className = "homeformRed";
		document.frmRegistration.lstuniversity_gra.focus();
		shdPost = false;
	}
	else
	{   
		var divPass = document.getElementById("divgraUniCont");
		divPass.innerHTML = "<span id='spangraUni' class='hint-pointergraUni'></span>";
	}
	if (document.getElementById("txtOther_uni").value == "")
	{   
		fungraUnioth();
		objgraUnioth.className = "homeformRed";
		shdPost = false;
		
	}
	else if (document.getElementById("txtOther_uni").value.length < 2)
	{ 		
		fungraUniothRange();
		objgraUnioth.className = "homeformRed";
		shdPost = false;
	
	} 
	else if(!funValidateCharQual("name",document.getElementById("txtOther_uni").value))
	{   funInvalidgraUnioth();
		objgraUnioth.className = "homeformRed"; 
		shdPost = false;
	
	}
	
	
	if (document.getElementById("txtOther_uni").value != "" && document.getElementById("txtOther_uni").value.length < 2)
	{
		fungraUniothRange();

	}
	else if (document.getElementById("txtOther_uni").value != "" && document.getElementById("txtOther_uni").value.length > 2)
		funInvalidgraUnioth();
	
} 
	if (document.frmRegistration.txtDate.value == "")
	{  //alert(shdPost);
		var divPass = document.getElementById("divDobCont");
		divPass.innerHTML = "Please Select Date-of-Birth.   <span id='spanDob' class='hint-pointerDob'></span>";
		objDob.className = "homeformRed";
		//document.frmRegistration.txtDate.focus();
		shdPost = false;
	}
	else
	{   //alert(shdPost);
		var divPass = document.getElementById("divDobCont");
		divPass.innerHTML = "";
		objDob.className = "homeform";
	}
	
/*$(function() {
	$('#txtDate').datepicker({
		changeMonth: true,
		changeYear: true,
		dateFormat: 'yy-mm-dd',
		yearRange: '1950:1998'
	});
});*/
	
/*inserted code end*/
	if (!document.getElementById("cbTerms").checked)
	{   
		objTc.className = "homeformRed";
		document.frmRegistration.cbTerms.focus();
		shdPost = false;
	}
	if (document.getElementById("txtCaptcha").value == "")
	{  
		objCode.className = "homeformRed";
		document.frmRegistration.txtCaptcha.focus(); 
		shdPost = false;
	}
	/*Inserted Code start*/
	if (document.frmRegistration.txtCaptcha.value.length < 6 )
	{  //alert(document.frmRegistration.txtCaptcha.value.length);
		objCode.className = "homeformRed";
		document.frmRegistration.txtCaptcha.focus(); 
		shdPost = false;
	}
		if (document.getElementById("txtMobile").value == "")
		{  
			var divPass = document.getElementById("divMobCont");
			divPass.innerHTML = "Please Enter Mobile Number. <span id='spanMob' class='hint-pointerPassword'></span>";
			objMob.className = "homeformRed";
			document.frmRegistration.txtMobile.focus();
			shdPost = false;
		}
		else {/*Inserted Code end*/  
	if (document.getElementById("txtMobile").value != "")
	{ 
			if (document.frmRegistration.txtMobile.value.length < 10)
		{ 
						if (tabctr == 1 || tabctr == 4)
						{
								if((document.frmRegistration.txtMobile.value.charAt(0)!=9) || (document.frmRegistration.txtMobile.value.charAt(0)!=8))
								  {       var divPass = document.getElementById("divMobCont");
							 divPass.innerHTML =  "Please Enter Valid Mobile Number (Start With 9 or 8). <span id='spanMob' class='hint-pointerMob'></span>";
										 objMob.className = "homeformRed";
										  document.frmRegistration.txtMobile.focus();
										shdPost = false;
								  } 
								  else
								  {  
								   var divPass = document.getElementById("divMobCont");
										 divPass.innerHTML =  "<span id='spanMob' class='hint-pointerMob'></span>";
								 } 
						}
					else 
					{
						if((document.frmRegistration.txtMobile.value.charAt(0)!=9) || (document.frmRegistration.txtMobile.value.charAt(0)!=8))
								  {       var divPass = document.getElementById("divMobCont");
							 divPass.innerHTML =  "Please Enter Valid Mobile Number (Start With 9 or 8). <span id='spanMob' class='hint-pointerMob'></span>";
										 objMob.className = "homeformRed";
										  document.frmRegistration.txtMobile.focus();
										shdPost = false;
								  } 
								  else
								  {  
								   var divPass = document.getElementById("divMobCont");
										 divPass.innerHTML =  "<span id='spanMob' class='hint-pointerMob'></span>";
								 } 
					}
			if (tabctr == 1 || tabctr == 4)
			{
				if(document.frmRegistration.txtMobile.value.length < 10)
				{
					var divPass = document.getElementById("divMobCont");
					divPass.innerHTML = "Your mobile number should be atleast 10 digits long. <span id='spanMob' class='hint-pointerPassword'></span>";
					objMob.className = "homeformRed";
					document.frmRegistration.txtMobile.focus();
					shdPost = false;
				}
				else
				{
					var divPass = document.getElementById("divMobCont");
					divPass.innerHTML = "Please enter your 10 digit mobile number. <span id='spanMob' class='hint-pointerPassword'></span>";
					objMob.className = "homeform";
				}
				
			}
			else
			{
				if(document.frmRegistration.txtMobile.value.length < 10)
				{
					var divPass = document.frmRegistration.divMobCont; 
					divPass.innerHTML = "Your mobile number should be atleast 10 digits long. <span id='spanMob' class='Orangehint-pointerPassword'></span>";
					objMob.className = "homeformRed";
					document.frmRegistration.txtMobile.focus();
					shdPost = false;
				}
				else
				{
					var divPass = document.getElementById("divMobCont");
					divPass.innerHTML = " <span id='spanMob' class='Orangehint-pointerPassword'></span>";
					objMob.className = "homeform";
				}
				
			}
		}
		else
		{  
			if (tabctr == 1 || tabctr == 4)
			{
				if(!funNumeric(document.getElementById("txtMobile").value))
				{
					var divPass = document.getElementById("divMobCont");
				divPass.innerHTML = "Mobile number should not contain any alphabets or special characters. <span id='spanMob' class='hint-pointerPassword'></span>";
					objMob.className = "homeformRed";
					shdPost = false;
				}
				else
				{
					var divPass = document.getElementById("divMobCont");
					divPass.innerHTML = " <span id='spanMob' class='hint-pointerPassword'></span>";
					objMob.className = "homeform";
				}
							}
			else
			{
				if(!funNumeric(document.getElementById("txtMobile").value))
				{
					var divPass = document.getElementById("divMobCont"); 
		divPass.innerHTML = "Mobile number should not contain any alphabets or special characters. <span id='spanMob' class='Orangehint-pointerPassword'></span>";
					objMob.className = "homeformRed";
					shdPost = false;
				}
				else
				{
					var divPass = document.getElementById("divMobCont");
					divPass.innerHTML = "Please enter your 10 digit mobile number. <span id='spanMob' class='Orangehint-pointerPassword'></span>";
					objMob.className = "homeform";
				}
				
			}
		}
	}
}
	
	if (document.getElementById("txtFirstName").value == "")
	{ 
		funFirstName();
		objFname.className = "homeformRed";
		document.getElementById("txtFirstName").focus(); 
		shdPost = false; 
	}
	else if (document.getElementById("txtFirstName").value.length < 3)
	{  
		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 < 3)
	{
		funFnRange(); 
	}
	else if (document.getElementById("txtFirstName").value != "" && document.getElementById("txtFirstName").value.length > 1)
		funInvalidFn();
		/*Inserted own code Start*/
		if (document.getElementById("txtLastName").value == "")
	{  
		funLastName();
		objLname.className = "homeformRed";
		document.getElementById("txtLastName").focus(); 
		shdPost = false;

	}
	else if (document.getElementById("txtLastName").value.length < 3)
	{
		
		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 != "" && document.getElementById("txtLastName").value.length < 3)
	{
		funLnRange(); 
	}
	else if (document.getElementById("txtLastName").value != "" && document.getElementById("txtLastName").value.length > 1)
		funInvalidLn();
		
			/*end of own code*/
	if (document.frmRegistration.txtPassword.value == "")
	{  
		funPass("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
	{
		
		{
			var divPass = document.getElementById("divPassCont");
			divPass.innerHTML = "";
		}
	}
	
	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.frmRegistration.txtEmail.value == "")
	{  
		funEmail();
		objEmail.className = "homeformRed";
		document.frmRegistration.txtEmail.focus(); 
		shdPost = false;

	}
	else if (document.frmRegistration.txtEmail.value.length < 7)
	{ 
		funEmailRange();
		objEmail.className = "homeformRed";
		document.frmRegistration.txtEmail.focus(); 
		shdPost = false;
	}
	else if(funInvalidEmail())
	{
		objEmail.className = "homeformRed"; 
		document.frmRegistration.txtEmail.focus();
		shdPost = false;
	}
	
	//alert(shdPost);
	if (shdPost)
		return true;
	return false;
	
} 


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 funValidateChar(type,value){var reg;if (type == "pass")reg = /^([A-Za-z0-9]+)$/;else if (type == "name")reg = /^([A-Za-z]+)$/;if(reg.test(value) == false){ return false;} return true;} 
function funValidateCharQual(type,value){var reg;if (type == "pass")reg = /^([A-Za-z0-9]+)$/;else if (type == "name")reg = /^([A-Z a-z .,&]+)$/;if(reg.test(value) == false){ return false;} return true;}
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; 
	var divMob,divMobT,divMobC,divMobB,spanMob;
	var divUni,divUniT,divUniC,divUniB,spanUni;
	var divDob,divDobT,divDobC,divDobB,spanDob;
	var divUnioth,divUniothT,divUniothC,divUniothB,spanUnioth;
	var divState,divStateT,divStateC,divStateB,spanState;
	var divDist,divDistT,divDistC,divDistB,spanDist;
	var divColl,divCollT,divCollC,divCollB,spanColl;
	var divStucoll,divStucollT,divStucollC,divStucollB,spanStucoll;
	var divAspcoll,divAspcollT,divAspcollC,divAspcollB,spanAspcoll;
	var divAspqual,divAspqualT,divAspqualC,divAspqualB,spanAspqual;
	var divaspState,divaspStateT,divaspStateC,divaspStateB,spanaspState;
	var divcorDist,divcorDistT,divcorDistC,divcorDistB,spancorDist;
	var divcorState,divcorStateT,divcorStateC,divcorStateB,spancorState;
	var divcorPos,divcorPosT,divcorPosC,divcorPosB,spancorPos;
	var divcorPosoth,divcorPosothT,divcorPosothC,divcorPosothB,spancorPosoth;
	var divCorcoll,divCorcollT,divCorcollC,divCorcollB,spanCorcoll;
	var divCorcolloth,divCorcollothT,divCorcollothC,divCorcollothB,spanCorcolloth;
	var divorsState,divorsStateT,divorsStateC,divorsStateB,spanorsState;
	var divorsCity,divorsCityT,divorsCityC,divorsCityB,spanorsCity;
	var divorsQual,divorsQualT,divorsQualC,divorsQualB,spanorsQual;
	var divcomCity,divcomCityT,divcomCityC,divcomCityB,spancomCity;
	var divcomState,divcomStateT,divcomStateC,divcomStateB,spancomState;
	var divcomName,divcomNameT,divcomNameC,divcomNameB,spancomName;
	var divcomDesc,divcomDescT,divcomDescC,divcomDescB,spancomDesc;
	var divgraDist,divgraDistT,divgraDistC,divgraDistB,spangraDist;
	var divgraState,divgraStateT,divgraStateC,divgraStateB,spangraState;
	var divgraColl,divgraCollT,divgraCollC,divgraCollB,spangraColl;
	var divgraUni,divgraUniT,divgraUniC,divgraUniB,spangraUni;
	var divgraUnioth,divgraUniothT,divgraUniothC,divgraUniothB,spangraUnioth;
	var divgraColloth,divgraCollothT,divgraCollothC,divgraCollothB,spangraColloth;
	var divgraCourse,divgraCourseT,divgraCourseC,divgraCourseB,spangraCourse;
	var divStatem,divStatemT,divStatemC,divStatemB,spanStatem;
	var divDistm,divDistmT,divDistmC,divDistmB,spanDistm;
	var divCollm,divCollmT,divCollmC,divCollmB,spanCollm;
	var divStucollm,divStucollmT,divStucollmC,divStucollmB,spanStucollm;
	var divUnim,divUnimT,divUnimC,divUnimB,spanUnim;
	var divUniothm,divUniothmT,divUniothmC,divUniothmB,spanUniothm;
	var divCountrym,divCountrymT,divCountrymC,divCountrymB,spanCountrym;
	var divStateb,divStatebT,divStatebC,divStatebB,spanStateb;
	var divDistb,divDistbT,divDistbC,divDistbB,spanDistb;
	var divCollb,divCollbT,divCollbC,divCollbB,spanCollb;
	var divStucollb,divStucollbT,divStucollbC,divStucollbB,spanStucollb;
	var divUnib,divUnibT,divUnibC,divUnibB,spanUnib;
	var divUniothb,divUniothbT,divUniothbC,divUniothbB,spanUniothb;
	var divCountryb,divCountrybT,divCountrybC,divCountrybB,spanCountryb;
	var divStatec,divStatecT,divStatecC,divStatecB,spanStatec;
	var divDistc,divDistcT,divDistcC,divDistcB,spanDistc;
	var divCollc,divCollcT,divCollcC,divCollcB,spanCollc;
	var divStucollc,divStucollcT,divStucollcC,divStucollcB,spanStucollc;
	/*	var divYOJ,divYOJT,divYOJC,divYOJB,spanYOJ;*/
	var divYOS,divYOST,divYOSC,divYOSB,spanYOS;

	
	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';
	
	divMob = document.getElementById("divMob");
	divMobT = document.getElementById("divMobTop");
	divMobC = document.getElementById("divMobCont"); 
	divMobB = document.getElementById("divMobBtm");
	spanMob = document.getElementById("spanMob");
	divMob.className = 'OrangehintContainer';
	divMobT.className = 'OrangehintTop'; 
	divMobC.className = 'OrangehintContent';
	divMobB.className = 'OrangehintBtm';
	spanMob.className = 'Orangehint-pointerLName';
	
	/*inserted code start*/
		
	divUni = document.getElementById("divUni");
	divUniT = document.getElementById("divUniTop");
	divUniC = document.getElementById("divUniCont"); 
	divUniB = document.getElementById("divUniBtm");
	spanUni = document.getElementById("spanUni");
	divUni.className = 'OrangehintContainer';
	divUniT.className = 'OrangehintTop'; 
	divUniC.className = 'OrangehintContent';
	divUniB.className = 'OrangehintBtm';
	spanUni.className = 'Orangehint-pointerUni';
	
	divUnim = document.getElementById("divUnim");
	divUnimT = document.getElementById("divUnimTop");
	divUnimC = document.getElementById("divUnimCont"); 
	divUnimB = document.getElementById("divUnimBtm");
	spanUnim = document.getElementById("spanUnim");
	divUnim.className = 'OrangehintContainer';
	divUnimT.className = 'OrangehintTop'; 
	divUnimC.className = 'OrangehintContent';
	divUnimB.className = 'OrangehintBtm';
	spanUnim.className = 'Orangehint-pointerUnim';
	
	divUnib = document.getElementById("divUnib");
	divUnibT = document.getElementById("divUnibTop");
	divUnibC = document.getElementById("divUnibCont"); 
	divUnibB = document.getElementById("divUnibBtm");
	spanUnib = document.getElementById("spanUnib");
	divUnib.className = 'OrangehintContainer';
	divUnibT.className = 'OrangehintTop'; 
	divUnibmC.className = 'OrangehintContent';
	divUnibB.className = 'OrangehintBtm';
	spanUnib.className = 'Orangehint-pointerUnib';
	
		
	divDob = document.getElementById("divDob");
	divDobT = document.getElementById("divDobTop");
	divDobC = document.getElementById("divDobCont"); 
	divDobB = document.getElementById("divDobBtm");
	spanDob = document.getElementById("spanDob");
	divDob.className = 'OrangehintContainer';
	divDobT.className = 'OrangehintTop'; 
	divDobC.className = 'OrangehintContent';
	divDobB.className = 'OrangehintBtm';
	spanDob.className = 'Orangehint-pointerDob';
	
	divUnioth = document.getElementById("divUnioth");
	divUniothT = document.getElementById("divUniothTop");
	divUniothC = document.getElementById("divUniothCont"); 
	divUniothB = document.getElementById("divUniothBtm");
	spanUnioth = document.getElementById("spanUnioth");
	divUnioth.className = 'OrangehintContainer';
	divUniothT.className = 'OrangehintTop'; 
	divUniothC.className = 'OrangehintContent';
	divUniothB.className = 'OrangehintBtm';
	spanUniothclassName = 'Orangehint-pointerUnioth';
	
	divState = document.getElementById("divState");
	divStateT = document.getElementById("divStateTop");
	divStateC = document.getElementById("divStateCont"); 
	divStateB = document.getElementById("divStateBtm");
	spanState = document.getElementById("spanState");
	divState.className = 'OrangehintContainer';
	divStateT.className = 'OrangehintTop'; 
	divStateC.className = 'OrangehintContent';
	divStateB.className = 'OrangehintBtm';
	spanState.className = 'Orangehint-pointerState';
	
	
	divDist = document.getElementById("divDist");
	divDistT = document.getElementById("divDistTop");
	divDistC = document.getElementById("divDistCont"); 
	divDistB = document.getElementById("divDistBtm");
	spanDist = document.getElementById("spanDist");
	divDist.className = 'OrangehintContainer';
	divDistT.className = 'OrangehintTop'; 
	divDistC.className = 'OrangehintContent';
	divDistB.className = 'OrangehintBtm';
	spanDist.className = 'Orangehint-pointerDist';
	
	divColl = document.getElementById("divColl");
	divCollT = document.getElementById("divCollTop");
	divCollC = document.getElementById("divCollCont"); 
	divCollB = document.getElementById("divCollBtm");
	spanColl = document.getElementById("spanColl");
	divColl.className = 'OrangehintContainer';
	divCollT.className = 'OrangehintTop'; 
	divCollC.className = 'OrangehintContent';
	divCollB.className = 'OrangehintBtm';
	spanColl.className = 'Orangehint-pointerColl';
	
	
	divStucoll = document.getElementById("divStucoll");
	divStucollT = document.getElementById("divStucollTop");
	divStucollC = document.getElementById("divStucollCont"); 
	divStucollB = document.getElementById("divStucollBtm");
	spanStucoll = document.getElementById("spanStucoll");
	divStucoll.className = 'OrangehintContainer';
	divStucollT.className = 'OrangehintTop'; 
	divStucollC.className = 'OrangehintContent';
	divStucollB.className = 'OrangehintBtm';
	spanStucoll.className = 'Orangehint-pointerStucoll';
	
	divUniothm = document.getElementById("divUniothm");
	divUniothmT = document.getElementById("divUniothmTop");
	divUniothmC = document.getElementById("divUniothmCont"); 
	divUniothmB = document.getElementById("divUniothmBtm");
	spanUniothm = document.getElementById("spanUniothm");
	divUniothm.className = 'OrangehintContainer';
	divUniothmT.className = 'OrangehintTop'; 
	divUniothmC.className = 'OrangehintContent';
	divUniothmB.className = 'OrangehintBtm';
	spanUniothm.className = 'Orangehint-pointerUniothm';
	
	divStatem = document.getElementById("divStatem");
	divStatemT = document.getElementById("divStatemTop");
	divStatemC = document.getElementById("divStatemCont"); 
	divStatemB = document.getElementById("divStatemBtm");
	spanStatem = document.getElementById("spanStatem");
	divStatem.className = 'OrangehintContainer';
	divStatemT.className = 'OrangehintTop'; 
	divStatemC.className = 'OrangehintContent';
	divStatemB.className = 'OrangehintBtm';
	spanStatem.className = 'Orangehint-pointerStatem';
	
	
	divDistm = document.getElementById("divDistm");
	divDistmT = document.getElementById("divDistmTop");
	divDistmC = document.getElementById("divDistmCont"); 
	divDistmB = document.getElementById("divDistmBtm");
	spanDistm = document.getElementById("spanDistm");
	divDistm.className = 'OrangehintContainer';
	divDistmT.className = 'OrangehintTop'; 
	divDistmC.className = 'OrangehintContent';
	divDistmB.className = 'OrangehintBtm';
	spanDistm.className = 'Orangehint-pointerDistm';
	
	divCollm = document.getElementById("divCollm");
	divCollmT = document.getElementById("divCollmTop");
	divCollmC = document.getElementById("divCollmCont"); 
	divCollmB = document.getElementById("divCollmBtm");
	spanCollm = document.getElementById("spanCollm");
	divCollm.className = 'OrangehintContainer';
	divCollmT.className = 'OrangehintTop'; 
	divCollmC.className = 'OrangehintContent';
	divCollmB.className = 'OrangehintBtm';
	spanCollm.className = 'Orangehint-pointerCollm';
	
	
	divStucollm = document.getElementById("divStucollm");
	divStucollmT = document.getElementById("divStucollmTop");
	divStucollmC = document.getElementById("divStucollmCont"); 
	divStucollmB = document.getElementById("divStucollmBtm");
	spanStucollm = document.getElementById("spanStucollm");
	divStucollm.className = 'OrangehintContainer';
	divStucollmT.className = 'OrangehintTop'; 
	divStucollmC.className = 'OrangehintContent';
	divStucollmB.className = 'OrangehintBtm';
	spanStucollm.className = 'Orangehint-pointerStucollm';
	
	divUniothb = document.getElementById("divUniothb");
	divUniothbT = document.getElementById("divUniothbTop");
	divUniothbC = document.getElementById("divUniothbCont"); 
	divUniothbB = document.getElementById("divUniothbBtm");
	spanUniothb = document.getElementById("spanUniothb");
	divUniothb.className = 'OrangehintContainer';
	divUniothbT.className = 'OrangehintTop'; 
	divUniothbC.className = 'OrangehintContent';
	divUniothbB.className = 'OrangehintBtm';
	spanUniothb.className = 'Orangehint-pointerUniothbm';
	
	divStateb = document.getElementById("divStateb");
	divStatebT = document.getElementById("divStatebTop");
	divStatebC = document.getElementById("divStatebCont"); 
	divStatebB = document.getElementById("divStatebBtm");
	spanStateb = document.getElementById("spanStateb");
	divStateb.className = 'OrangehintContainer';
	divStatebT.className = 'OrangehintTop'; 
	divStatebC.className = 'OrangehintContent';
	divStatebB.className = 'OrangehintBtm';
	spanStateb.className = 'Orangehint-pointerStateb';
	
	
	divDistb = document.getElementById("divDistb");
	divDistbT = document.getElementById("divDistbTop");
	divDistbC = document.getElementById("divDistbCont"); 
	divDistbB = document.getElementById("divDistbBtm");
	spanDistb = document.getElementById("spanDistb");
	divDistb.className = 'OrangehintContainer';
	divDistbT.className = 'OrangehintTop'; 
	divDistbC.className = 'OrangehintContent';
	divDistbB.className = 'OrangehintBtm';
	spanDistb.className = 'Orangehint-pointerDistb';
	
	divCollb = document.getElementById("divCollb");
	divCollbT = document.getElementById("divCollbTop");
	divCollbC = document.getElementById("divCollbCont"); 
	divCollbB = document.getElementById("divCollbBtm");
	spanCollb = document.getElementById("spanCollb");
	divCollb.className = 'OrangehintContainer';
	divCollbT.className = 'OrangehintTop'; 
	divCollbC.className = 'OrangehintContent';
	divCollbB.className = 'OrangehintBtm';
	spanCollb.className = 'Orangehint-pointerCollb';
	
	
	divStucollb = document.getElementById("divStucollb");
	divStucollbT = document.getElementById("divStucollbTop");
	divStucollbC = document.getElementById("divStucollbCont"); 
	divStucollbB = document.getElementById("divStucollbBtm");
	spanStucollb = document.getElementById("spanStucollb");
	divStucollb.className = 'OrangehintContainer';
	divStucollbT.className = 'OrangehintTop'; 
	divStucollbC.className = 'OrangehintContent';
	divStucollbB.className = 'OrangehintBtm';
	spanStucollb.className = 'Orangehint-pointerStucollb';
	
	divUniothb = document.getElementById("divUniothb");
	divUniothbT = document.getElementById("divUniothbTop");
	divUniothbC = document.getElementById("divUniothbCont"); 
	divUniothbB = document.getElementById("divUniothbBtm");
	spanUniothb = document.getElementById("spanUniothb");
	divUniothb.className = 'OrangehintContainer';
	divUniothbT.className = 'OrangehintTop'; 
	divUniothbC.className = 'OrangehintContent';
	divUniothbB.className = 'OrangehintBtm';
	spanUniothb.className = 'Orangehint-pointerUniothbm';
	
	divStatec = document.getElementById("divStatec");
	divStatecT = document.getElementById("divStatecTop");
	divStatecC = document.getElementById("divStatecCont"); 
	divStatecB = document.getElementById("divStatecBtm");
	spanStatec = document.getElementById("spanStatec");
	divStatec.className = 'OrangehintContainer';
	divStatecT.className = 'OrangehintTop'; 
	divStatecC.className = 'OrangehintContent';
	divStatecB.className = 'OrangehintBtm';
	spanStatec.className = 'Orangehint-pointerStatec';
	
	
	divDistc = document.getElementById("divDistc");
	divDistcT = document.getElementById("divDistcTop");
	divDistcC = document.getElementById("divDistcCont"); 
	divDistcB = document.getElementById("divDistcBtm");
	spanDistc = document.getElementById("spanDistc");
	divDistc.className = 'OrangehintContainer';
	divDistcT.className = 'OrangehintTop'; 
	divDistcC.className = 'OrangehintContent';
	divDistcB.className = 'OrangehintBtm';
	spanDistc.className = 'Orangehint-pointerDistc';
	
	divCollc = document.getElementById("divCollc");
	divCollcT = document.getElementById("divCollcTop");
	divCollcC = document.getElementById("divCollcCont"); 
	divCollcB = document.getElementById("divCollcBtm");
	spanCollc = document.getElementById("spanCollc");
	divCollc.className = 'OrangehintContainer';
	divCollcT.className = 'OrangehintTop'; 
	divCollcC.className = 'OrangehintContent';
	divCollcB.className = 'OrangehintBtm';
	spanCollc.className = 'Orangehint-pointerCollb';
	
	
	divStucollc = document.getElementById("divStucollc");
	divStucollcT = document.getElementById("divStucollcTop");
	divStucollcC = document.getElementById("divStucollcCont"); 
	divStucollcB = document.getElementById("divStucollcBtm");
	spanStucollc = document.getElementById("spanStucollc");
	divStucollc.className = 'OrangehintContainer';
	divStucollcT.className = 'OrangehintTop'; 
	divStucollcC.className = 'OrangehintContent';
	divStucollcB.className = 'OrangehintBtm';
	spanStucollc.className = 'Orangehint-pointerStucollc';
	
	divaspDist = document.getElementById("divaspDist");
	divaspDistT = document.getElementById("divaspDistTop");
	divaspDistC = document.getElementById("divaspDistCont"); 
	divaspDistB = document.getElementById("divaspDistBtm");
	spanaspDist = document.getElementById("spanaspDist");
	divaspDist.className = 'OrangehintContainer';
	divaspDistT.className = 'OrangehintTop'; 
	divaspDistC.className = 'OrangehintContent';
	divaspDistB.className = 'OrangehintBtm';
	spanaspDist.className = 'Orangehint-pointeraspDist';
	
	divaspState = document.getElementById("divaspState");
	divaspStateT = document.getElementById("divaspStateTop");
	divaspStateC = document.getElementById("divaspStateCont"); 
	divaspStateB = document.getElementById("divaspStateBtm");
	spanaspState = document.getElementById("spanaspState");
	divaspState.className = 'OrangehintContainer';
	divaspStateT.className = 'OrangehintTop'; 
	divaspStateC.className = 'OrangehintContent';
	divaspStateB.className = 'OrangehintBtm';
	spanaspState.className = 'Orangehint-pointeraspState';
	
	divAspcoll = document.getElementById("divAspcoll");
	divAspcollT = document.getElementById("divAspcollTop");
	divAspcollC = document.getElementById("divAspcollCont"); 
	divAspcollB = document.getElementById("divAspcollBtm");
	spanAspcoll = document.getElementById("spanAspcoll");
	divAspcoll.className = 'OrangehintContainer';
	divAspcollT.className = 'OrangehintTop'; 
	divAspcollC.className = 'OrangehintContent';
	divAspcollB.className = 'OrangehintBtm';
	spanAspcoll.className = 'Orangehint-pointerAspcoll';
	
	divAspqual = document.getElementById("divAspqual");
	divAspqualT = document.getElementById("divAspqualTop");
	divAspqualC = document.getElementById("divAspqualCont"); 
	divAspqualB = document.getElementById("divAspqualBtm");
	spanAspqual = document.getElementById("spanAspqual");
	divAspqual.className = 'OrangehintContainer';
	divAspqualT.className = 'OrangehintTop'; 
	divAspqualC.className = 'OrangehintContent';
	divAspqualB.className = 'OrangehintBtm';
	spanAspqual.className = 'Orangehint-pointerAspqual';
	
	divcorDist = document.getElementById("divcorDist");
	divcorDistT = document.getElementById("divcorDistTop");
	divcorDistC = document.getElementById("divcorDistCont"); 
	divcorDistB = document.getElementById("divcorDistBtm");
	spancorDist = document.getElementById("spancorDist");
	divcorDist.className = 'OrangehintContainer';
	divcorDistT.className = 'OrangehintTop'; 
	divcorDistC.className = 'OrangehintContent';
	divcorDistB.className = 'OrangehintBtm';
	spancorDist.className = 'Orangehint-pointercorDist';
	
	divcorState = document.getElementById("divcorState");
	divcorStateT = document.getElementById("divcorStateTop");
	divcorStateC = document.getElementById("divcorStateCont"); 
	divcorStateB = document.getElementById("divcorStateBtm");
	spancorState = document.getElementById("spancorState");
	divcorState.className = 'OrangehintContainer';
	divcorStateT.className = 'OrangehintTop'; 
	divcorStateC.className = 'OrangehintContent';
	divcorStateB.className = 'OrangehintBtm';
	spancorState.className = 'Orangehint-pointercorState';
	
	divCorcoll = document.getElementById("divCorcoll");
	divCorcollT = document.getElementById("divCorcollTop");
	divCorcollC = document.getElementById("divCorcollCont"); 
	divCorcollB = document.getElementById("divCorcollBtm");
	spanCorcoll = document.getElementById("spanCorcoll");
	divCorcoll.className = 'OrangehintContainer';
	divCorcollT.className = 'OrangehintTop'; 
	divCorcollC.className = 'OrangehintContent';
	divCorcollB.className = 'OrangehintBtm';
	spanCorcoll.className = 'Orangehint-pointerCorcoll';
	
	
	divCorcolloth = document.getElementById("divCorcolloth");
	divCorcollothT = document.getElementById("divCorcollothTop");
	divCorcollothC = document.getElementById("divCorcollothCont"); 
	divCorcollothB = document.getElementById("divCorcollothBtm");
	spanCorcolloth = document.getElementById("spanCorcolloth");
	divCorcolloth.className = 'OrangehintContainer';
	divCorcollothT.className = 'OrangehintTop'; 
	divCorcollothC.className = 'OrangehintContent';
	divCorcollothB.className = 'OrangehintBtm';
	spanCorcolloth.className = 'Orangehint-pointerCorcolloth';
	
	divcorPos = document.getElementById("divcorPos");
	divcorPosT = document.getElementById("divcorPosTop");
	divcorPosC = document.getElementById("divcorPosCont"); 
	divcorPosB = document.getElementById("divcorPosBtm");
	spancorPos = document.getElementById("spancorPos");
	divcorPos.className = 'OrangehintContainer';
	divcorPosT.className = 'OrangehintTop'; 
	divcorPosC.className = 'OrangehintContent';
	divcorPosB.className = 'OrangehintBtm';
	spancorPos.className = 'Orangehint-pointercorPos';
	
	divcorPosoth = document.getElementById("divcorPosoth");
	divcorPosothT = document.getElementById("divcorPosothTop");
	divcorPosothC = document.getElementById("divcorPosothCont"); 
	divcorPosothB = document.getElementById("divcorPosothBtm");
	spancorPosoth = document.getElementById("spancorPosoth");
	divcorPosoth.className = 'OrangehintContainer';
	divcorPosothT.className = 'OrangehintTop'; 
	divcorPosothC.className = 'OrangehintContent';
	divcorPosothB.className = 'OrangehintBtm';
	spancorPosoth.className = 'Orangehint-pointercorPosoth';
	
	divorsState = document.getElementById("divorsState");
	divorsStateT = document.getElementById("divorsStateTop");
	divorsStateC = document.getElementById("divorsStateCont"); 
	divorsStateB = document.getElementById("divorsStateBtm");
	spanorsState = document.getElementById("spanorsState");
	divorsState.className = 'OrangehintContainer';
	divorsStateT.className = 'OrangehintTop'; 
	divorsStateC.className = 'OrangehintContent';
	divorsStateB.className = 'OrangehintBtm';
	spanorsState.className = 'Orangehint-pointerorsState';
	
	
	divorsCity = document.getElementById("divorsCity");
	divorsCityT = document.getElementById("divorsCityTop");
	divorsCityC = document.getElementById("divorsCityCont"); 
	divorsCityB = document.getElementById("divorsCityBtm");
	spanorsCity = document.getElementById("spanorsCity");
	divorsCity.className = 'OrangehintContainer';
	divorsCityT.className = 'OrangehintTop'; 
	divorsCityC.className = 'OrangehintContent';
	divorsCityB.className = 'OrangehintBtm';
	spanorsCity.className = 'Orangehint-pointerorsCity';
	
	
	divorsQual = document.getElementById("divorsQual");
	divorsQualT = document.getElementById("divorsQualTop");
	divorsQualC = document.getElementById("divorsQualCont"); 
	divorsQualB = document.getElementById("divorsQualBtm");
	spanorsQual = document.getElementById("spanorsQual");
	divorsQual.className = 'OrangehintContainer';
	divorsQualT.className = 'OrangehintTop'; 
	divorsQualC.className = 'OrangehintContent';
	divorsQualB.className = 'OrangehintBtm';
	spanorsQual.className = 'Orangehint-pointerorsQual';
	
	divcomDesc = document.getElementById("divcomDesc");
	divcomDescT = document.getElementById("divcomDescTop");
	divcomDescC = document.getElementById("divcomDescCont"); 
	divcomDescB = document.getElementById("divcomDescBtm");
	spancomDesc = document.getElementById("spancomDesc");
	divcomDesc.className = 'OrangehintContainer';
	divcomDescT.className = 'OrangehintTop'; 
	divcomDescC.className = 'OrangehintContent';
	divcomDescB.className = 'OrangehintBtm';
	spancomDesc.className = 'Orangehint-pointercomDesc';
	
	divcomCity = document.getElementById("divcomCity");
	divcomCityT = document.getElementById("divcomCityTop");
	divcomCityC = document.getElementById("divcomCityCont"); 
	divcomCityB = document.getElementById("divcomCityBtm");
	spancomCity = document.getElementById("spancomCity");
	divcomCity.className = 'OrangehintContainer';
	divcomCityT.className = 'OrangehintTop'; 
	divcomCityC.className = 'OrangehintContent';
	divcomCityB.className = 'OrangehintBtm';
	spancomCity.className = 'Orangehint-pointercomCity';
	
	divcomState = document.getElementById("divcomState");
	divcomStateT = document.getElementById("divcomStateTop");
	divcomStateC = document.getElementById("divcomStateCont"); 
	divcomStateB = document.getElementById("divcomStateBtm");
	spancomState = document.getElementById("spancomState");
	divcomState.className = 'OrangehintContainer';
	divcomStateT.className = 'OrangehintTop'; 
	divcomStateC.className = 'OrangehintContent';
	divcomStateB.className = 'OrangehintBtm';
	spancomState.className = 'Orangehint-pointercomState';
	
	divcomName = document.getElementById("divcomName");
	divcomNameT = document.getElementById("divcomNameTop");
	divcomNameC = document.getElementById("divcomNameCont"); 
	divcomNameB = document.getElementById("divcomNameBtm");
	spancomName = document.getElementById("spancomName");
	divcomName.className = 'OrangehintContainer';
	divcomNameT.className = 'OrangehintTop'; 
	divcomNameC.className = 'OrangehintContent';
	divcomNameB.className = 'OrangehintBtm';
	spancomName.className = 'Orangehint-pointercomName';
	
	divgraCourse = document.getElementById("divgraCourse");
	divgraCourseT = document.getElementById("divgraCourseTop");
	divgraCourseC = document.getElementById("divgraCourseCont"); 
	divgraCourseB = document.getElementById("divgraCourseBtm");
	spangraCourse = document.getElementById("spangraCourse");
	divgraCourse.className = 'OrangehintContainer';
	divgraCourseT.className = 'OrangehintTop'; 
	divgraCourseC.className = 'OrangehintContent';
	divgraCourseB.className = 'OrangehintBtm';
	spangraCourse.className = 'Orangehint-pointergraCourse';
	
	divgraState = document.getElementById("divgraState");
	divgraStateT = document.getElementById("divgraStateTop");
	divgraStateC = document.getElementById("divgraStateCont"); 
	divgraStateB = document.getElementById("divgraStateBtm");
	spangraState = document.getElementById("spangraState");
	divgraState.className = 'OrangehintContainer';
	divgraStateT.className = 'OrangehintTop'; 
	divgraStateC.className = 'OrangehintContent';
	divgraStateB.className = 'OrangehintBtm';
	spangraState.className = 'Orangehint-pointergraState';
	
	divgraDist = document.getElementById("divgraDist");
	divgraDistT = document.getElementById("divgraDistTop");
	divgraDistC = document.getElementById("divgraDistCont"); 
	divgraDistB = document.getElementById("divgraDistBtm");
	spangraDist = document.getElementById("spangraDist");
	divgraDist.className = 'OrangehintContainer';
	divgraDistT.className = 'OrangehintTop'; 
	divgraDistC.className = 'OrangehintContent';
	divgraDistB.className = 'OrangehintBtm';
	spangraDist.className = 'Orangehint-pointergraDist';
	
	divgraUni = document.getElementById("divgraUni");
	divgraUniT = document.getElementById("divgraUniTop");
	divgraUniC = document.getElementById("divgraUniCont"); 
	divgraUniB = document.getElementById("divgraUniBtm");
	spangraUni = document.getElementById("spangraUni");
	divgraUni.className = 'OrangehintContainer';
	divgraUniT.className = 'OrangehintTop'; 
	divgraUniC.className = 'OrangehintContent';
	divgraUniB.className = 'OrangehintBtm';
	spangraUni.className = 'Orangehint-pointergraUni';
	
	divgraColl = document.getElementById("divgraColl");
	divgraCollT = document.getElementById("divgraCollTop");
	divgraCollC = document.getElementById("divgraCollCont"); 
	divgraCollB = document.getElementById("divgraCollBtm");
	spangraColl = document.getElementById("spangraColl");
	divgraColl.className = 'OrangehintContainer';
	divgraCollT.className = 'OrangehintTop'; 
	divgraCollC.className = 'OrangehintContent';
	divgraCollB.className = 'OrangehintBtm';
	spangraColl.className = 'Orangehint-pointergraColl';
	
	divgraUnioth = document.getElementById("divgraUnioth");
	divgraUniothT = document.getElementById("divgraUniothTop");
	divgraUniothC = document.getElementById("divgraUniothCont"); 
	divgraUniothB = document.getElementById("divgraUniothBtm");
	spangraUnioth = document.getElementById("spangraUnioth");
	divgraUnioth.className = 'OrangehintContainer';
	divgraUniothT.className = 'OrangehintTop'; 
	divgraUniothC.className = 'OrangehintContent';
	divgraUniothB.className = 'OrangehintBtm';
	spangraUnioth.className = 'Orangehint-pointergraUnioth';
	
	divgraColloth = document.getElementById("divgraColloth");
	divgraCollothT = document.getElementById("divgraCollothTop");
	divgraCollothC = document.getElementById("divgraCollothCont"); 
	divgraCollothB = document.getElementById("divgraCollothBtm");
	spangraColloth = document.getElementById("spangraColloth");
	divgraColloth.className = 'OrangehintContainer';
	divgraCollothT.className = 'OrangehintTop'; 
	divgraCollothC.className = 'OrangehintContent';
	divgraCollothB.className = 'OrangehintBtm';
	spangraColloth.className = 'Orangehint-pointergraColloth';
	 
	 divCountrym = document.getElementById("divCountrym");divCountrymT = document.getElementById("divCountrymTop"); divCountrymC = document.getElementById("divCountrymCont");divCountrymB = document.getElementById("divCountrymBtm");spanCountrym = document.getElementById("spanCountrym");divCountrym.className = 'OrangehintContainer'; divCountrymT.className = 'OrangehintTop';divCountrymC.className = 'OrangehintContent';divCountrymB.className = 'OrangehintBtm';spanCountry.className = 'Orangehint-pointerCountrym';
	  divCountryb = document.getElementById("divCountryb");divCountrybT = document.getElementById("divCountrybTop"); divCountrybC = document.getElementById("divCountrybCont");divCountrybB = document.getElementById("divCountrybBtm");spanCountryb = document.getElementById("spanCountryb");divCountryb.className = 'OrangehintContainer'; divCountrymT.className = 'OrangehintTop';divCountrybC.className = 'OrangehintContent';divCountrybB.className = 'OrangehintBtm';spanCountry.className = 'Orangehint-pointerCountryb';
	  divYOS = document.getElementById("divYOS");divYOST = document.getElementById("divYOSTop"); divYOSC = document.getElementById("divYOSCont");divYOSB = document.getElementById("divYOSBtm");spanYOS = document.getElementById("spanYOS");divYOS.className = 'OrangehintContainer'; divYOST.className = 'OrangehintTop';divYOSC.className = 'OrangehintContent';divYOSB.className = 'OrangehintBtm';spanYOS.className = 'Orangehint-pointerYOS';
	 /* divYOJ = document.getElementById("divYOJ");divYOJT = document.getElementById("divYOJTop"); divYOJC = document.getElementById("divYOJCont");divYOJB = document.getElementById("divYOJBtm");spanYOJ = document.getElementById("spanYOJ");divYOJ.className = 'OrangehintContainer'; divYOJT.className = 'OrangehintTop';divYOJC.className = 'OrangehintContent';divYOJB.className = 'OrangehintBtm';spanYOJ.className = 'Orangehint-pointerYOJ';*/
	
	/*inserted code end*/
	
	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'; 

/*inserted code end*/}

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;
	var divMob,divMobT,divMobC,divMobB,spanMob;
	var divYOS,divYOST,divYOSC,divYOSB,spanYOS;
	var divUni,divUniT,divUniC,divUniB,spanUni;
	var divDob,divDobT,divDobC,divDobB,spanDob;
	var divUnioth,divUniothT,divUniothC,divUniothB,spanUnioth;
	var divState,divStateT,divStateC,divStateB,spanState;
	var divDist,divDistT,divDistC,divDistB,spanDist;
	var divColl,divCollT,divCollC,divCollB,spanColl;
	var divStucoll,divStucollT,divStucollC,divStucollB,spanStucoll;
	var divAspcoll,divAspcollT,divAspcollC,divAspcollB,spanAspcoll;
	var divAspqual,divAspqualT,divAspqualC,divAspqualB,spanAspqual;
	var divaspState,divaspStateT,divaspStateC,divaspStateB,spanaspState;
	var divaspDist,divaspDistT,divaspDistC,divaspDistB,spanaspDist;
	var divcorDist,divcorDistT,divcorDistC,divcorDistB,spancorDist;
	var divcorState,divcorStateT,divcorStateC,divcorStateB,spancorState;
	var divcorPos,divcorPosT,divcorPosC,divcorPosB,spancorPos;
	var divcorPosoth,divcorPosothT,divcorPosothC,divcorPosothB,spancorPosoth;
	var divCorcoll,divCorcollT,divCorcollC,divCorcollB,spanCorcoll;
	var divCorcolloth,divCorcollothT,divCorcollothC,divCorcollothB,spanCorcolloth;
	var divorsState,divorsStateT,divorsStateC,divorsStateB,spanorsState;
	var divorsCity,divorsCityT,divorsCityC,divorsCityB,spanorsCity;
	var divorsQual,divorsQualT,divorsQualC,divorsQualB,spanorsQual;
	var divcomCity,divcomCityT,divcomCityC,divcomCityB,spancomCity;
	var divcomState,divcomStateT,divcomStateC,divcomStateB,spancomState;
	var divcomName,divcomNameT,divcomNameC,divcomNameB,spancomName;
	var divcomDesc,divcomDescT,divcomDescC,divcomDescB,spancomDesc;
	var divgraDist,divgraDistT,divgraDistC,divgraDistB,spangraDist;
	var divgraState,divgraStateT,divgraStateC,divgraStateB,spangraState;
	var divgraColl,divgraCollT,divgraCollC,divgraCollB,spangraColl;
	var divgraUni,divgraUniT,divgraUniC,divgraUniB,spangraUni;
	var divgraUnioth,divgraUniothT,divgraUniothC,divgraUniothB,spangraUnioth;
	var divgraColloth,divgraCollothT,divgraCollothC,divgraCollothB,spangraColloth;
	var divgraCourse,divgraCourseT,divgraCourseC,divgraCourseB,spangraCourse;
	var divStatem,divStatemT,divStatemC,divStatemB,spanStatem;
	var divDistm,divDistmT,divDistmC,divDistmB,spanDistm;
	var divCollm,divCollmT,divCollmC,divCollmB,spanCollm;
	var divStucollm,divStucollmT,divStucollmC,divStucollmB,spanStucollm;
	var divUnim,divUnimT,divUnimC,divUnimB,spanUnim;
	var divUniothm,divUniothmT,divUniothmC,divUniothmB,spanUniothm;
	var divCountrym,divCountrymT,divCountrymC,divCountrymB,spanCountrym;
	/*var divYOJ,divYOJT,divYOJC,divYOJB,spanYOJ;*/
	var divYOS,divYOST,divYOSC,divYOSB,spanYOS;


	
	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';
	
	/*divYOJ = document.getElementById("divYOJ");
	divYOJT = document.getElementById("divYOJTop");
	divYOJC = document.getElementById("divYOJCont"); 
	divYOJB = document.getElementById("divYOJBtm");
	spanYOJ = document.getElementById("spanYOJ");
	divYOJ.className = 'hintContainer';
	divYOJT.className = 'hintTop'; 
	divYOJC.className = 'hintContent';
	divYOJB.className = 'hintBtm';
	spanYOJ.className = 'hint-pointerYOJ'; */
	
	divMob = document.getElementById("divMob");
	divMobT = document.getElementById("divMobTop");
	divMobC = document.getElementById("divMobCont"); 
	divMobB = document.getElementById("divMobBtm");
	spanMob = document.getElementById("spanMob");
	divMob.className = 'hintContainer';
	divMobT.className = 'hintTop'; 
	divMobC.className = 'hintContent';
	divMobB.className = 'hintBtm';
	spanMob.className = 'hint-pointerLName';
	/*inserted code start*/
		
	divUni = document.getElementById("divUni");
	divUniT = document.getElementById("divUniTop");
	divUniC = document.getElementById("divUniCont"); 
	divUniB = document.getElementById("divUniBtm");
	spanUni = document.getElementById("spanUni");
	divUni.className = 'hintContainer';
	divUniT.className = 'hintTop'; 
	divUniC.className = 'hintContent';
	divUniB.className = 'hintBtm';
	spanUni.className = 'hint-pointerUni';
	
	divDob = document.getElementById("divDob");
	divDobT = document.getElementById("divDobTop");
	divDobC = document.getElementById("divDobCont"); 
	divDobB = document.getElementById("divDobBtm");
	spanDob = document.getElementById("spanDob");
	divDob.className = 'hintContainer';
	divDobT.className = 'hintTop'; 
	divDobC.className = 'hintContent';
	divDobB.className = 'hintBtm';
	spanDob.className = 'hint-pointerDob';
	
	divUnioth = document.getElementById("divUnioth");
	divUniothT = document.getElementById("divUniothTop");
	divUniothC = document.getElementById("divUniothCont"); 
	divUniothB = document.getElementById("divUniothBtm");
	spanUnioth = document.getElementById("spanUnioth");
	divUnioth.className = 'hintContainer';
	divUniothT.className = 'hintTop'; 
	divUniothC.className = 'hintContent';
	divUniothB.className = 'hintBtm';
	spanUniothclassName = 'hint-pointerUnioth';
	
	
	divState = document.getElementById("divState");
	divStateT = document.getElementById("divStateTop");
	divStateC = document.getElementById("divStateCont"); 
	divStateB = document.getElementById("divStateBtm");
	spanState = document.getElementById("spanState");
	divState.className = 'hintContainer';
	divStateT.className = 'hintTop'; 
	divStateC.className = 'hintContent';
	divStateB.className = 'hintBtm';
	spanState.className = 'hint-pointerState';
	
	
	divDist = document.getElementById("divDist");
	divDistT = document.getElementById("divDistTop");
	divDistC = document.getElementById("divDistCont"); 
	divDistB = document.getElementById("divDistBtm");
	spanDist = document.getElementById("spanDist");
	divDist.className = 'hintContainer';
	divDistT.className = 'hintTop'; 
	divDistC.className = 'hintContent';
	divDistB.className = 'hintBtm';
	spanDist.className = 'hint-pointerDist';
	
	divColl = document.getElementById("divColl");
	divCollT = document.getElementById("divCollTop");
	divCollC = document.getElementById("divCollCont"); 
	divCollB = document.getElementById("divCollBtm");
	spanColl = document.getElementById("spanColl");
	divColl.className = 'hintContainer';
	divCollT.className = 'hintTop'; 
	divCollC.className = 'hintContent';
	divCollB.className = 'hintBtm';
	spanColl.className = 'hint-pointerColl';
	
	divStucoll = document.getElementById("divStucoll");
	divStucollT = document.getElementById("divStucollTop");
	divStucollC = document.getElementById("divStucollCont"); 
	divStucollB = document.getElementById("divStucollBtm");
	spanStucoll = document.getElementById("spanStucoll");
	divStucoll.className = 'hintContainer';
	divStucollT.className = 'hintTop'; 
	divStucollC.className = 'hintContent';
	divStucollB.className = 'hintBtm';
	spanStucoll.className = 'hint-pointerStucoll';
	
	divaspDist = document.getElementById("divaspDist");
	divaspDistT = document.getElementById("divaspDistTop");
	divaspDistC = document.getElementById("divaspDistCont"); 
	divaspDistB = document.getElementById("divaspDistBtm");
	spanaspDist = document.getElementById("spanaspDist");
	divaspDist.className = 'hintContainer';
	divaspDistT.className = 'hintTop'; 
	divaspDistC.className = 'hintContent';
	divaspDistB.className = 'hintBtm';
	spanaspDist.className = 'hint-pointeraspDist';
	
	divaspState = document.getElementById("divaspState");
	divaspStateT = document.getElementById("divaspStateTop");
	divaspStateC = document.getElementById("divaspStateCont"); 
	divaspStateB = document.getElementById("divaspStateBtm");
	spanaspState = document.getElementById("spanaspState");
	divaspState.className = 'hintContainer';
	divaspStateT.className = 'hintTop'; 
	divaspStateC.className = 'hintContent';
	divaspStateB.className = 'hintBtm';
	spanaspState.className = 'hint-pointeraspState';
	
	divAspcoll = document.getElementById("divAspcoll");
	divAspcollT = document.getElementById("divAspcollTop");
	divAspcollC = document.getElementById("divAspcollCont"); 
	divAspcollB = document.getElementById("divAspcollBtm");
	spanAspcoll = document.getElementById("spanAspcoll");
	divAspcoll.className = 'hintContainer';
	divAspcollT.className = 'hintTop'; 
	divAspcollC.className = 'hintContent';
	divAspcollB.className = 'hintBtm';
	spanAspcoll.className = 'hint-pointerAspcoll';
	
	
	divcorDist = document.getElementById("divcorDist");
	divcorDistT = document.getElementById("divcorDistTop");
	divcorDistC = document.getElementById("divcorDistCont"); 
	divcorDistB = document.getElementById("divcorDistBtm");
	spancorDist = document.getElementById("spancorDist");
	divcorDist.className = 'hintContainer';
	divcorDistT.className = 'hintTop'; 
	divcorDistC.className = 'hintContent';
	divcorDistB.className = 'hintBtm';
	spancorDist.className = 'hint-pointercorDist';
	
	divcorState = document.getElementById("divcorState");
	divcorStateT = document.getElementById("divcorStateTop");
	divcorStateC = document.getElementById("divcorStateCont"); 
	divcorStateB = document.getElementById("divcorStateBtm");
	spancorState = document.getElementById("spancorState");
	divcorState.className = 'hintContainer';
	divcorStateT.className = 'hintTop'; 
	divcorStateC.className = 'hintContent';
	divcorStateB.className = 'hintBtm';
	spancorState.className = 'hint-pointercorState';
	
	divCorcoll = document.getElementById("divCorcoll");
	divCorcollT = document.getElementById("divCorcollTop");
	divCorcollC = document.getElementById("divCorcollCont"); 
	divCorcollB = document.getElementById("divCorcollBtm");
	spanCorcoll = document.getElementById("spanCorcoll");
	divCorcoll.className = 'hintContainer';
	divCorcollT.className = 'hintTop'; 
	divCorcollC.className = 'hintContent';
	divCorcollB.className = 'hintBtm';
	spanCorcoll.className = 'hint-pointerCorcoll';
	
	
	divCorcolloth = document.getElementById("divCorcolloth");
	divCorcollothT = document.getElementById("divCorcollothTop");
	divCorcollothC = document.getElementById("divCorcollothCont"); 
	divCorcollothB = document.getElementById("divCorcollothBtm");
	spanCorcolloth = document.getElementById("spanCorcolloth");
	divCorcolloth.className = 'hintContainer';
	divCorcollothT.className = 'hintTop'; 
	divCorcollothC.className = 'hintContent';
	divCorcollothB.className = 'hintBtm';
	spanCorcolloth.className = 'hint-pointerCorcolloth';
	
	divcorPos = document.getElementById("divcorPos");
	divcorPosT = document.getElementById("divcorPosTop");
	divcorPosC = document.getElementById("divcorPosCont"); 
	divcorPosB = document.getElementById("divcorPosBtm");
	spancorPos = document.getElementById("spancorPos");
	divcorPos.className = 'hintContainer';
	divcorPosT.className = 'hintTop'; 
	divcorPosC.className = 'hintContent';
	divcorPosB.className = 'hintBtm';
	spancorPos.className = 'hint-pointercorPos';
	
	divcorPosoth = document.getElementById("divcorPosoth");
	divcorPosothT = document.getElementById("divcorPosothTop");
	divcorPosothC = document.getElementById("divcorPosothCont"); 
	divcorPosothB = document.getElementById("divcorPosothBtm");
	spancorPosoth = document.getElementById("spancorPosoth");
	divcorPosoth.className = 'hintContainer';
	divcorPosothT.className = 'hintTop'; 
	divcorPosothC.className = 'hintContent';
	divcorPosothB.className = 'hintBtm';
	spancorPosoth.className = 'hint-pointercorPosoth';
	
	divAspqual = document.getElementById("divAspqual");
	divAspqualT = document.getElementById("divAspqualTop");
	divAspqualC = document.getElementById("divAspqualCont"); 
	divAspqualB = document.getElementById("divAspqualBtm");
	spanAspqual = document.getElementById("spanAspqual");
	divAspqual.className = 'Container';
	divAspqualT.className = 'hintTop'; 
	divAspqualC.className = 'hintContent';
	divAspqualB.className = 'hintBtm';
	spanAspqual.className = 'hint-pointerAspqual';
	
	divorsState = document.getElementById("divorsState");
	divorsStateT = document.getElementById("divorsStateTop");
	divorsStateC = document.getElementById("divorsStateCont"); 
	divorsStateB = document.getElementById("divorsStateBtm");
	spanorsState = document.getElementById("spanorsState");
	divorsState.className = 'hintContainer';
	divorsStateT.className = 'hintTop'; 
	divorsStateC.className = 'hintContent';
	divorsStateB.className = 'hintBtm';
	spanorsState.className = 'hint-pointerorsState';
	
	
	divorsCity = document.getElementById("divorsCity");
	divorsCityT = document.getElementById("divorsCityTop");
	divorsCityC = document.getElementById("divorsCityCont"); 
	divorsCityB = document.getElementById("divorsCityBtm");
	spanorsCity = document.getElementById("spanorsCity");
	divorsCity.className = 'hintContainer';
	divorsCityT.className = 'hintTop'; 
	divorsCityC.className = 'hintContent';
	divorsCityB.className = 'hintBtm';
	spanorsCity.className = 'hint-pointerorsCity';
	
	
	divorsQual = document.getElementById("divorsQual");
	divorsQualT = document.getElementById("divorsQualTop");
	divorsQualC = document.getElementById("divorsQualCont"); 
	divorsQualB = document.getElementById("divorsQualBtm");
	spanorsQual = document.getElementById("spanorsQual");
	divorsQual.className = 'hintContainer';
	divorsQualT.className = 'hintTop'; 
	divorsQualC.className = 'hintContent';
	divorsQualB.className = 'hintBtm';
	spanorsQual.className = 'hint-pointerorsQual';
	
	divcomDesc = document.getElementById("divcomDesc");
	divcomDescT = document.getElementById("divcomDescTop");
	divcomDescC = document.getElementById("divcomDescCont"); 
	divcomDescB = document.getElementById("divcomDescBtm");
	spancomDesc = document.getElementById("spancomDesc");
	divcomDesc.className = 'hintContainer';
	divcomDescT.className = 'hintTop'; 
	divcomDescC.className = 'hintContent';
	divcomDescB.className = 'hintBtm';
	spancomDesc.className = 'hint-pointercomDesc';
	
	divcomCity = document.getElementById("divcomCity");
	divcomCityT = document.getElementById("divcomCityTop");
	divcomCityC = document.getElementById("divcomCityCont"); 
	divcomCityB = document.getElementById("divcomCityBtm");
	spancomCity = document.getElementById("spancomCity");
	divcomCity.className = 'hintContainer';
	divcomCityT.className = 'hintTop'; 
	divcomCityC.className = 'hintContent';
	divcomCityB.className = 'hintBtm';
	spancomCity.className = 'hint-pointercomCity';
	
	divcomState = document.getElementById("divcomState");
	divcomStateT = document.getElementById("divcomStateTop");
	divcomStateC = document.getElementById("divcomStateCont"); 
	divcomStateB = document.getElementById("divcomStateBtm");
	spancomState = document.getElementById("spancomState");
	divcomState.className = 'hintContainer';
	divcomStateT.className = 'hintTop'; 
	divcomStateC.className = 'hintContent';
	divcomStateB.className = 'hintBtm';
	spancomState.className = 'hint-pointercomState';
	
	divcomName = document.getElementById("divcomName");
	divcomNameT = document.getElementById("divcomNameTop");
	divcomNameC = document.getElementById("divcomNameCont"); 
	divcomNameB = document.getElementById("divcomNameBtm");
	spancomName = document.getElementById("spancomName");
	divcomName.className = 'hintContainer';
	divcomNameT.className = 'hintTop'; 
	divcomNameC.className = 'hintContent';
	divcomNameB.className = 'hintBtm';
	spancomName.className = 'hint-pointercomName';
	
	divgraCourse = document.getElementById("divgraCourse");
	divgraCourseT = document.getElementById("divgraCourseTop");
	divgraCourseC = document.getElementById("divgraCourseCont"); 
	divgraCourseB = document.getElementById("divgraCourseBtm");
	spangraCourse = document.getElementById("spangraCourse");
	divgraCourse.className = 'hintContainer';
	divgraCourseT.className = 'hintTop'; 
	divgraCourseC.className = 'hintContent';
	divgraCourseB.className = 'hintBtm';
	spangraCourse.className = 'hint-pointergraCourse';
	
	divgraState = document.getElementById("divgraState");
	divgraStateT = document.getElementById("divgraStateTop");
	divgraStateC = document.getElementById("divgraStateCont"); 
	divgraStateB = document.getElementById("divgraStateBtm");
	spangraState = document.getElementById("spangraState");
	divgraState.className = 'hintContainer';
	divgraStateT.className = 'hintTop'; 
	divgraStateC.className = 'hintContent';
	divgraStateB.className = 'hintBtm';
	spangraState.className = 'hint-pointergraState';
	
	divgraDist = document.getElementById("divgraDist");
	divgraDistT = document.getElementById("divgraDistTop");
	divgraDistC = document.getElementById("divgraDistCont"); 
	divgraDistB = document.getElementById("divgraDistBtm");
	spangraDist = document.getElementById("spangraDist");
	divgraDist.className = 'hintContainer';
	divgraDistT.className = 'hintTop'; 
	divgraDistC.className = 'hintContent';
	divgraDistB.className = 'hintBtm';
	spangraDist.className = 'hint-pointergraDist';
	
	divgraUni = document.getElementById("divgraUni");
	divgraUniT = document.getElementById("divgraUniTop");
	divgraUniC = document.getElementById("divgraUniCont"); 
	divgraUniB = document.getElementById("divgraUniBtm");
	spangraUni = document.getElementById("spangraUni");
	divgraUni.className = 'hintContainer';
	divgraUniT.className = 'hintTop'; 
	divgraUniC.className = 'hintContent';
	divgraUniB.className = 'hintBtm';
	spangraUni.className = 'hint-pointergraUni';
	
	divgraColl = document.getElementById("divgraColl");
	divgraCollT = document.getElementById("divgraCollTop");
	divgraCollC = document.getElementById("divgraCollCont"); 
	divgraCollB = document.getElementById("divgraCollBtm");
	spangraColl = document.getElementById("spangraColl");
	divgraColl.className = 'hintContainer';
	divgraCollT.className = 'hintTop'; 
	divgraCollC.className = 'hintContent';
	divgraCollB.className = 'hintBtm';
	spangraColl.className = 'hint-pointergraColl';
	
	
	divgraUnioth = document.getElementById("divgraUnioth");
	divgraUniothT = document.getElementById("divgraUniothTop");
	divgraUniothC = document.getElementById("divgraUniothCont"); 
	divgraUniothB = document.getElementById("divgraUniothBtm");
	spangraUnioth = document.getElementById("spangraUnioth");
	divgraUnioth.className = 'hintContainer';
	divgraUniothT.className = 'hintTop'; 
	divgraUniothC.className = 'hintContent';
	divgraUniothB.className = 'hintBtm';
	spangraUnioth.className = 'hint-pointergraUnioth';
	
	divgraColloth = document.getElementById("divgraColloth");
	divgraCollothT = document.getElementById("divgraCollothTop");
	divgraCollothC = document.getElementById("divgraCollothCont"); 
	divgraCollothB = document.getElementById("divgraCollothBtm");
	spangraColloth = document.getElementById("spangraColloth");
	divgraColloth.className = 'hintContainer';
	divgraCollothT.className = 'hintTop'; 
	divgraCollothC.className = 'hintContent';
	divgraCollothB.className = 'hintBtm';
	spangraColloth.className = 'hint-pointergraColloth';
	
	/*inserted code end*/
	
	
	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'; divCountrym = document.getElementById("divCountrym");divCountrymT = document.getElementById("divCountrymTop"); divCountrymC = document.getElementById("divCountrymCont");divCountrymB = document.getElementById("divCountrymBtm");spanCountry = document.getElementById("spanCountry");divCountrym.className = 'hintContainer'; divCountrymT.className = 'hintTop';divCountrymC.className = 'hintContent';divCountrymB.className = 'hintBtm';spanCountry.className = 'hint-pointerCountrym'; divYOS = document.getElementById("divYOS");divYOST = document.getElementById("divYOSTop"); divYOSC = document.getElementById("divYOSCont");divYOSB = document.getElementById("divYOSBtm");spanYOS = document.getElementById("spanYOS");divYOS.className = 'hintContainer'; divYOST.className = 'hintTop';divYOSC.className = 'hintContent';divYOSB.className = 'hintBtm';spanYOS.className = 'hint-pointerYOS'; } 


var tabctr;
tabctr = 1;
function HTJ()
{
var me = this;function getImgSrc(i)
{

return "img/bg/homePage" + i + ".jpg";
};

function getTxtSrc(i)
{var div;div = "homeCopy" + i;document.getElementById("homeCopy1").style.display='none';document.getElementById("homeCopy2").style.display='none';document.getElementById("homeCopy3").style.display='none';
	document.getElementById("homeCopy4").style.display='none';
	
	if (i==2)
	
		//document.getElementById(div).innerHTML ="";
	if (i==3)
		//document.getElementById(div).innerHTML ="";
	if (i==4)
		//document.getElementById(div).innerHTML ="";
	
	document.getElementById("homeCopy1").style.display='none';
	document.getElementById("homeCopy2").style.display='none';
	document.getElementById("homeCopy3").style.display='none';
	document.getElementById("homeCopy4").style.display='none';
	
	document.getElementById(div).style.display='block';
	document.getElementById("hpNav1").className = "homePageNav";
	document.getElementById("hpNav2").className = "homePageNav";
	document.getElementById("hpNav3").className = "homePageNav";
	document.getElementById("hpNav4").className = "homePageNav";
	var objNav,nav;
	nav = "hpNav" + me.loadItem.currentIndex;
	objNav = document.getElementById(nav);
	objNav.className = "homePageNavCur"+i ;

};
	
	
function getNavHoverSrc(i)
{
    return "img/nav/homeNav" + i + "_over.png";
};
me.postLoad = function(isInitialized)
{
    if(!isInitialized)
    {getTxtSrc(1);    return;}
        
me.loadItem(1, true);
};
me.loadItem = function(n, init)
{
tabctr = n;
if (n==2 || n==3)
{funChangeDivCalssOrange();}else{funChangeDivCalssBlue();}
if(!init && n == me.loadItem.currentIndex) return false;if(!init){var prevNav = getElement('homeNav' + me.loadItem.currentIndex);
prevNav.className = '';}var curNav = getElement('homeNav' + n);
curNav.className = 'current';me.loadItem.currentIndex = n;
//var bgColors = ["#FFCD00","#00C2C2","#FFCD00","#00C2C2"];
var hpbg = getElement('homePageBg');

hpbg.src = getImgSrc(n);
hpbg.className = 'homePageBg';getTxtSrc(n);
//getElement('mainContent').style.backgroundColor = bgColors[n-1];
correctPNG();return false;};me.loadItem.currentIndex = 1;}var htj = new HTJ();delete HTJ;
 
