 
function changeMenuColor(objMenu)
{
	//objMenu.style.color="#00FF00"
	//objMenu.onmouseout=""
	//objMenu.onmouseover=""
	
}
function chkPassword(obj)
{
	if(document.all.UserType.value.substr(0,1)=="0")
	{
		document.all.lbID.innerHTML=""
		document.all.IDNo.style.height="1px"
		document.all.IDNo.style.width ="1px"
		document.all.IDNo.disabled = true;

		document.all.lbpassword.innerHTML=""
		document.all.password.style.height="1px"
		document.all.password.style.width ="1px"
		document.all.password.disabled = true;
	}
	else
	{
		document.all.lbID.innerHTML="ID :&nbsp;"
		document.all.IDNo.style.height="24px"
		document.all.IDNo.style.width ="180px"
		document.all.IDNo.disabled = false;

		document.all.lbpassword.innerHTML="Password :&nbsp;"
		document.all.password.style.height="24px"
		document.all.password.style.width ="180px"
		document.all.password.disabled = false;
	}
}
function chkKeyPressed(obj)
{
	if (obj.name=="CoName")
		document.all.lCompany.innerText=obj.value.substr(0,32);
	else if (obj.name=="CoUrl")
		document.all.lURL.innerText=obj.value.substr(0,35);
	else if (obj.name=="FirstName")
		document.all.lName.innerText = (obj.value + " " + document.all.LastName.value).substr(0,27);
	else if (obj.name=="LastName")
		document.all.lName.innerText = (document.all.FirstName.value + " " + obj.value).substr(0,27);
	else if (obj.name=="Title")
		document.all.lTitle.innerText = obj.value.substr(0,27);
	else if (obj.name=="PhoneNo")
		if (obj.value !="")
			document.all.lTel.innerText   = ("Tel : " + obj.value).substr(0,30);
		else
			document.all.lTel.innerText   = "";
	else if (obj.name=="FaxNo")
		if (obj.value !="")
			document.all.lFax.innerText   = ("Fax : " + obj.value).substr(0,30);
		else
			document.all.lFax.innerText   = "";
	else if (obj.name=="txtEmail")
		if (obj.value !="")
			document.all.lEmail.innerText = ("eMail : " + obj.value).substr(0,35);
		else
			document.all.lEmail.innerText = "";
	else if (obj.name=="Address" )
		document.all.lAdd1.innerText = obj.value.substr(0,35)
	else if ( obj.name=="City" || obj.name=="StateOrProvince" )
	{
		document.all.lAdd2.innerText = (document.all.City.value + ", " + document.getElementById("StateOrProvince").options[document.all.StateOrProvince.selectedIndex].text).substr(0,35);
		if (document.all.lAdd2.innerText.replace(" ","")==",")
			document.all.lAdd2.innerText = "" ;
	}
	else if ( obj.name=="PostalOrZipCode" || obj.name=="Country" )
	{
		document.all.lAdd3.innerText = (document.all.PostalOrZipCode.value + ", " + document.getElementById("Country").options[document.all.Country.selectedIndex].text).substr(0,35);
		if (document.all.lAdd3.innerText.replace(" ","")==",")
			document.all.lAdd3.innerText = "" ;
	}

}

function myOnFocus(obj)
{
	if (obj.name=="CoName")
		document.all.lCompany.style.background="#f45c12";
	else if (obj.name=="CoUrl")
		document.all.lURL.style.background="#f45c12";
	else if (obj.name=="FirstName")
		document.all.lName.style.background="#f45c12";
	else if (obj.name=="LastName")
		document.all.lName.style.background="#f45c12";
	else if (obj.name=="Title")
		document.all.lTitle.style.background="#f45c12";
	else if (obj.name=="PhoneNo")
		document.all.lTel.style.background="#f45c12";
	else if (obj.name=="FaxNo")
		document.all.lFax.style.background="#f45c12";
	else if (obj.name=="txtEmail")
		document.all.lEmail.style.background="#f45c12";
	else if (obj.name=="Address" )
		document.all.lAdd1.style.background="#f45c12";
	else if (obj.name=="City" || obj.name=="StateOrProvince" )
		document.all.lAdd2.style.background="#f45c12";
	else if ( obj.name=="PostalOrZipCode" || obj.name=="Country" )
		document.all.lAdd3.style.background="#f45c12";
}
function myOnBlur(obj)
{
	if (obj.name=="CoName")
		document.all.lCompany.style.background="";
	else if (obj.name=="CoUrl")
		document.all.lURL.style.background="";
	else if (obj.name=="FirstName")
		document.all.lName.style.background="";
	else if (obj.name=="LastName")
		document.all.lName.style.background="";
	else if (obj.name=="Title")
		document.all.lTitle.style.background="";
	else if (obj.name=="PhoneNo")
		document.all.lTel.style.background="";
	else if (obj.name=="FaxNo")
		document.all.lFax.style.background="";
	else if (obj.name=="txtEmail")
		document.all.lEmail.style.background="";
	else if (obj.name=="Address" )
		document.all.lAdd1.style.background="";
	else if (obj.name=="City" || obj.name=="StateOrProvince" )
		document.all.lAdd2.style.background="";
	else if ( obj.name=="PostalOrZipCode" || obj.name=="Country" )
		document.all.lAdd3.style.background="";
}

