function showImage(divID, url){
	//alert(divID);
	jQuery('#'+divID).html("<img width='250' src='"+url+"'>");
	document.getElementById(divID).style.display = "block";
}

function hideImage(divID){

	//alert(divID);
	document.getElementById(divID).style.display = "none";
}



current="";
function showAgentinfo(divid){
	if(current){ jQuery('#'+current).fadeOut('fast');}
	jQuery('#'+divid).fadeIn('fast');
	current = divid;
}

function highlightMenu(linkid){
	document.getElementById(linkid).className="topmenu-on";
}

function checkfieldValue(){
	value = document.getElementById("tags").value;
	
	if(value=="eg. Achrafieh, Hazmieh, Jounieh..."){
		document.getElementById('tags').value="";
		document.getElementById('tags').className="tagson";
	}
}
function resetfieldvalue(){
	value = document.getElementById("tags").value;
	
	if(value==""){
		document.getElementById('tags').className="tagsoff";
		document.getElementById('tags').value="eg. Achrafieh, Hazmieh, Jounieh...";
		
	}
}
