//Listing Real Estate Agent info

function clearAgentBoxL() {

	document.QContact.Lfakenoagent.checked=0;

	document.QContact.LAgent_Name.style.background="#ffffff";

	document.QContact.LAgent_Company.style.background="#ffffff";

	document.QContact.LAgent_Phone.style.background="#ffffff";

	document.QContact.LAgent_Email.style.background="#ffffff";

	document.QContact.Lnoagent.value="yup"

}

function agentinfoL() {

var agentchecked = document.QContact.Lfakenoagent.checked;

if (agentchecked==1) {

	document.QContact.Lnoagent.value="nope"

	//Agent Name

	document.QContact.Agent_Name.value="";

	document.QContact.LAgent_Name.style.background="#cccccc";

	//Agent Company

	document.QContact.LAgent_Company.value="";

	document.QContact.LAgent_Company.style.background="#cccccc";

	//Agent Phone

	document.QContact.LAgent_Phone.value="";

	document.QContact.LAgent_Phone.style.background="#cccccc";

	//Agent Email

	document.QContact.LAgent_Email.value="";

	document.QContact.LAgent_Email.style.background="#cccccc";

	//MLS

	//document.QContact.MLS.value="";

	//document.QContact.MLS.style.background="#cccccc";

}

else {

	//Agent Name

	document.QContact.Lnoagent.value="yup"

	document.QContact.LAgent_Name.disabled=0;

	document.QContact.LAgent_Name.style.background="#ffffff";

	//Agent Company

	document.QContact.LAgent_Company.disabled=0;

	document.QContact.LAgent_Company.style.background="#ffffff";

	//Agent Phone

	document.QContact.LAgent_Phone.disabled=0;

	document.QContact.LAgent_Phone.style.background="#ffffff";

	//Agent Email

	document.QContact.LAgent_Email.disabled=0;

	document.QContact.LAgent_Email.style.background="#ffffff";

	//MLS

	//document.QContact.MLS.disabled=0;

	//document.QContact.MLS.style.background="#ffffff";

}

}


