/* ouvre une fenêtre popup */
function ouvre_demo(w) {
	tx=(((screen.availWidth)/2)-(800/2));
	ty=(((screen.availHeight)/2)-(540/2));
	script=open(w,"demo","toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=800,height=540,top="+ty+",left="+tx+",alwaysraised=yes");
}
//ouvre une fenêtre pour demandé son mot de passe tropimed si oublié
function popupPassword(w) {
	tx=(((screen.availWidth)/2)-550/2);
	ty=(((screen.availHeight)/2)-270/2);
	script=open(w,"password","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=270,top="+ty+",left="+tx+",alwaysraised=yes");
}
//popup simple
function popUp(w){
	script=open(w);
}

//popup detail
function popupDetail(w) {
	script=open(w,"detail","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=628,height=550");
}