/**************************************************
*
* OpenRefWin
* Nicolas Levieil, 16/02/2001 13:03
*
* Ouvre une URL dans une nouvelle fenêtre de navigateur
*
* @param field ...
* @return {KEY_RETURN_DESC}
*
* @see
*
*************************************************/
Function OpenRefWin( url )
{
var options = "toolbar=no,location=no,directories=no,status=no,"
+ "menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,"
+ "width=560,height=300";
maFenetre = window.open(url,"",options);
}
|