/*************************************************
 ********      Common variables     **************
 *************************************************/

function getHostName(){
  var host = document.location.hostname;
  if(host.charAt(host.length - 1) != '/'){
    return host + '/';
  }
  return host;
}

var base_url = 'http://'+ getHostName();

function montre(id){
	return null;
}

/*function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) 
		{
			document.getElementById('smenu'+i).style.visibility='hidden';
			document.getElementById('smenu'+i).style.display='none';
		}
	}
	if (d) 
	{
		d.style.visibility='visible';
		d.style.display='block';
	}
}*/
//window.onload=montre;

