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.display='none';
			}
	}
if (d) {d.style.display='block';}
}

window.onload=montre;

function show(id) 
{
	var css = document.getElementById(id).style;
	css.display = 'block';

}

function hide(id) 
{
	var css = document.getElementById(id).style;
	css.display = 'none';

}

function pop(site) {
    w =526;
    h =502;
    x = screen.availWidth/2-w/2;
    y = screen.availHeight/2-h/2;
	window.open(site,'pop','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
}
      
function pop2(site) {
    w =555;
    h =320;
    x = screen.availWidth/2-w/2;
    y = screen.availHeight/2-h/2;
	window.open(site,'pop','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
}
  
  
function over(pic){
	document.aa.src=new Image();
	document.aa.src= pic;
	}
	
	
	
