// JavaScript Document
window.onload=montre;
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';}
}
<!--
//Redirection pour le menu deroulant 
function menuSelect(_url) {
    window.location.href = _url;
}
//-->

<!--
//Redirection pour les formulaires
function goToURL(_url) {
    window.location.href = _url;
}
//-->

function popupPage(url,x,y){
	myupload = window.open(url,'popupload','titlebar=no,menubar=no,scrollbars=no,status=no,resizable=yes,width='+x+',height='+y+'');
	if (window.focus) {myupload.focus()}
}

function popup(x,y,image,titre){

	if( x> window.screen.availWidth || y > window.screen.availHeight){
		if( x > screen.availWidth){x=screen.availWidth-20;}
		if( y > screen.availHeight){y=screen.availHeight-25;}
		url = "pop_image.php?image="+image+"&titre="+titre;
		up = window.open(url,'popupload','titlebar=no,menubar=no,scrollbars,status=no,resizable=yes,width='+x+',height='+y);
	}
	else{
		url = "pop_image.php?image="+image+"&titre="+titre;
		myupload = window.open(url,"popupload","titlebar=no,menubar=no,scrollbars=no,status=no,resizable=yes,width="+x+",height="+y);
	}
	if (window.focus) {myupload.focus()}
}
