// JavaScript Document
function rep_change(ob,what){
	if(what=='over'){
		ob.src='img/'+ob.id+'on.png';
	}else{
		ob.src='img/'+ob.id+'off.png';
	}
}

function switch_tab(ce){
	if(ce=='prop'){
		ge('tab_prop').src="img/prop_seach_on.png";
		ge('tab_agent').src="img/ageseach_off.png";	
		ge('bystate').innerHTML="SEARCH PROPERTY BY STATE";
		if(ge('linkmap'))
			ge('linkmap').href="PlatinumLuxuryPropertySearch.html"
			ge('search').action="platinumluxurylistingsearchresults.html";
	}else{
		ge('tab_prop').src="img/prop_seach_off.png";
		ge('tab_agent').src="img/ageseach_on.png";
		ge('bystate').innerHTML="SEARCH AGENT BY STATE";
		if(ge('linkmap'))
			ge('linkmap').href="PlatinumAgentSearch.html"
		ge('search').action="PlatinumLuxuryListingAgentSearchResults.html";	
	}
}
function ge(id){
	return document.getElementById(id);
}