
function popupPage(l, t, w, h, URL, name) 
{
var windowprops = "location=no,scrollbars=no,menubars=no,toolbar=no,resizable=yes" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,name ,windowprops);

}

function popupPage_menu_droit(l, t, w, h, URL, name) 
{
var windowprops = "location=yes, status=yes, scrollbars=yes, menubar=yes,toolbar=yes, resizable=yes" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,name ,windowprops);

}

function popupPage_scroll(l, t, w, h, URL, name) 
{
var windowprops = "location=no, status=yes, scrollbars=yes, menubar=yes,toolbar=yes, resizable=yes" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,name ,windowprops);

}

var statusmsg=""
function hidestatus(){
window.status=statusmsg
return true
}





