
/**********   Function to show the address on mouseover - through building on map   ***********/
function showAddress(imgId)
{
	var address;
	address="";
	switch (imgId)
	{
		case 'imgEurope':
			address=address + "<font style='color:#615d5c;'><b>Europe<br/>Darshan Solutions Limited</b><br /> 10, Bd de la Marne,<br/>13012 MARSEILLE,<br/>FRANCE.<br/>            <b>Tel: </b> (33) 626768453 <br/><b>Email: </b><a href='mailto:info@darshan3d.com?subject=Contacts - Darshan3d.com Business Enquiry'>info@darshan3d.com</a></font>";
			document.getElementById("dvAddress").innerHTML=address;
			break;

		case 'imgCorporate':
			address=address + "<font style='color:#615d5c;'><b>Corporate Office<br/>Darshan Solutions Limited</b><br />	2 Agapinoros Str., IRIS Tower,<br />Office No. 401,<br/>1076 Nicosia, CYPRUS.<br/><b>Fax: </b>(357) 22769816 <br/><b>Email: </b><a href='mailto:info@darshan3d.com?subject=Contacts - Darshan3d.com Business Enquiry'>info@darshan3d.com</a></font>";
			document.getElementById("dvAddress").innerHTML=address;
			break;

		case 'imgAsia':					
			address=address + "<font style='color:#615d5c;'><b>Asia/Latin America<br/>Darshan Solutions Limited</b><br /> 558, Laxman Vihar, Dhanwapur Road,<br/>Gurgaon, Haryana,<br />India - 122001.<br /><b>Tel: </b> +91 - 9818515641 <br /><b>Email: </b><a href='mailto:info@darshan3d.com?subject=Contacts - Darshan3d.com Business Enquiry'>info@darshan3d.com</a></font>";
			document.getElementById("dvAddress").innerHTML=address;
			break;
		
		default : break;				
	}				
}

/**********   Function to hide the address on mouseout - through building on map   ***********/
function hideAddress(tdId)
{
	document.getElementById("dvAddress").innerHTML="&nbsp;";
	
}		

/**********   Function to navigate the correspondence page on mouseclick - through building on map   ***********/
function navigateContacts(ddlId)
{				
	if(document.getElementById(ddlId).value !="0" )
	{
		location.href=document.getElementById(ddlId).value;
	}
}