//CONTROLE DE L OUVERTURE DES FENETRES

function OpenWin(URL,nom,height,width)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no");
}

function OpenWin2(URL,nom,height,width)
{
	window.open(URL,nom,"toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes");
}
