function directTo(place){
   location = place;         
}

function show(loc,place_loc,lang){
	//position in the site page				
	screenSite(lang,loc,place_loc);
   	div = document.getElementById("menu"+loc);
	div.style.visibility = "visible";
}

function hide(loc,first){
   div = document.getElementById("menu"+loc);
   div.style.visibility = "hidden";
}

function drawTd(me){
	me.style.color = "#000000";
	me.style.backgroundColor = "#ecf1fe";
	me.style.color = "#690e64";
	//me.style.a.color
	
}


function clearTd(me){
	me.style.color = "#000000";
	me.style.backgroundColor = "#76409d";    
	me.style.color = "#ffffff";	
}

function screenSite(lang,loc,place_loc){
   obj = document.getElementById("menu"+loc);      	
 
	width = document.body.clientWidth ;  
  	height = document.body.clientHeight;
	if(width<779){
		far1 = 0;
	}
	else{
		far1 = (width-780)/2;
	}
	
	
	obj.style.right=far1+place_loc*145;
	obj.style.top=214;
}