//----------------------------------------
// (C)e-ofac - Evariste Corbery - 11.06.2003
//----------------------------------------

//La date du jour
function la_date(){ 
    dt=new Date();
	result=""+ dt.getDate()+"."+(dt.getMonth()+1)+ "." + dt.getFullYear();
    document.write(result); 
}

/* ouvre une fenêtre popup */
function popupPortail(w) {
	fenetre=open(w,"popup","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=530,height=380");
}
function popupCommande(w) {
	tx=(((screen.availWidth)/2)-(600/2));
	ty=(((screen.availHeight)/2)-(500/2));
	fenetre=open(w,"popup","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=600,height=500,top="+ty+",left="+tx+",alwaysraised=yes");
}
