function pleinecran (img,  bgcol, txcol) {
      if (arguments.length < 3) {
        if (arguments.length < 2) {
          if (arguments.length < 1) {
             img = "" ;  bgcol = "#000000" ; txcol = "#FFFFFF"
        } else
          bgcol = "#000000" ; txcol = "#FFFFFF"
        } else
            txcol = "#FFFFFF"
	}
	// if (is.nav4up)	netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite")
	var pars = 'titlebar=0,scrollbars=1,dependent=1,resizable=1'
	pars += ',screenX=0,screenY=0,width='+screen.width+',height='+screen.height
	image = window.open ('', '', pars)
	image.document.open ('text/html', 'replace')
	image.document.writeln ('<html>')
	image.document.writeln ('<script type="text/javascript">window.moveTo(0,0);window.resizeTo('+screen.width+','+screen.height+')</script>')
	image.document.writeln ('<body bgcolor="'+bgcol+'" text="'+txcol+'" leftmargin="0" topmargin="0" bottommargin="16" marginheight="0" marginwidth="0">')
	image.document.writeln ('<div width="100%" height="100%" border="0"><center>')
	image.document.writeln ('<a href="javascript:window.close()">')
	image.document.writeln ('<img src="'+img+'" border="0" height="100%"></a>')
	image.document.writeln ('</center></div></body></html>')
}

