<!--
function W_openwin0(url,name,lar,lon) { //Ouvre une fenetre centree dans l'ecran
var floater = null;
var optionString = 'width='+lar+',height='+lon+',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no' ;
floater = window.open(url,name,optionString) ;
floater.moveTo(((screen.width / 2) - (lar / 2)), ((screen.height / 2) - (lon / 2)));
}

function W_openwin() { //Ouvre une fenetre centree dans l'ecran
var floater = null;
var optionString = 'width='+600+',height='+300+',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no' ;
floater = window.open('depot_cv.php','MonCV',optionString) ;
floater.moveTo(((screen.width / 2) - (lar / 2)), ((screen.height / 2) - (lon / 2)));
}
//-->