var locations = new Array();
locations[2] = "Lebanon - Beirut City – Hamra Str. – Tour De Lyon – 1st Floor – PO Box 113-5101<br>Telefax: +961 1 755977 – 755978 – 742749 – 737772<br>Mob: +961 3 363661";
locations[3] = "Jordan - Amman - Gardenz Str. – Alayan Bldg.<br />Tel: +962 6 5697662<br />Mob: +962799240267<br />Fax: +962 6 5697661";
locations[5] = "Libya<br />Tel :+218 914413479<br />";
locations[0] = "France<br />Tel: +336 87842840<br />Fax: +331 60343563";
locations[1] = "Germany<br />Tel: +491 607558371<br />Fax: +497 2439499842";
locations[6] = "Sudan<br />Tel: +249 912357017";
locations[4] = "Algeria<br />Tel: +213661599289";

function showHideAddress(vis,loc,x,y){
	
	if (vis == 1){
		document.getElementById('contact').style.visibility = 'visible';
		document.getElementById('contact1').style.visibility = 'visible';
		document.getElementById('contact').style.top = x;
		document.getElementById('contact').style.left = y;
		document.getElementById('contact1').innerHTML = locations[loc];
		
	}
	else {
		document.getElementById('contact').style.visibility = 'hidden';
		document.getElementById('contact1').style.visibility = 'hidden';
	}
	
	
}
