// JavaScript Document

<!--Call fonction-->
 
function Appel(arg,nomPage,w,h,t,l)
        {
 chaine = 'toolbar=no,location=no,scrolling=no,scrollbars=yes,resizable=yes,titlebar=no,width=' + w
  +  ',height=' + h
  +  ',screenX=0,screenY=0'
  +  ',top=' + t
  +  ',left=' + l 
        window.open(nomPage,arg,chaine);
        }
 
  
<!--