/*--------------------------------------------------------------------------
 *  Ouverture Formulaire
 *--------------------------------------------------------------------------*/

function OuvreFenetre( urlpage )
{
var dimensions="width=800,height=600,top=0,resizable=yes,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,left="+((screen.width-600)/2);
var myfen=window.open(urlpage, "_blank", dimensions);
myfen.focus();
}
