
//pop up image
function showPicture(pictureToShow, windowTitle)
{
	 PicWin=window.open("","PictureViewer",'status=0,scrollbars=no,resizable=yes,width=100,height=100,screenX=20,screenY=20,top=20,left=20');
	 PicWin.document.open();
	 PicWin.document.writeln('<html><head><title>' + windowTitle + '</title></head>');
	 PicWin.document.writeln('<body topmargin="0" onload="this.focus()" bgcolor="white" leftmargin="0" link="#808080" vlink="#808080">');
	 PicWin.document.writeln('<table border="0" width="100%" height="100%"><tr><td align="center" valign="middle">');
	 PicWin.document.writeln('<img onLoad="window.opener.resizeWindow(50,70,100);" border="1" src="'+ pictureToShow +'">');
	 PicWin.document.writeln('<br><a style="font-size:11px;font-family:verdana;" href="javascript:this.close()">Fermer</a></body></html>');
	 PicWin.document.close();
}
function resizeWindow(Hborder, Vborder, millisecs)
{     
	 setTimeout("PicWin.resizeTo(PicWin.document.images[0].width + " + Hborder + ", PicWin.document.images[0].height + " + Vborder + ");", millisecs);
}
//end

// rezise page 
if (self != top) { top.location = self.location; } self.moveTo(0,0); self.resizeTo(screen.availWidth,screen.availHeight );

// close page 
function closepage() {
window.close();
}

// open page fullscreen agence
function openfullscreena() {
window.open('index.php?pe=1','_blank','toolbar=no,location=no,directories=no,fullscreen=yes,status=no,menubar=no,scrollbars=yes,resizable=no,left=0,top=0');
}

// open page fullscreen workstation
function openfullscreenw() {
window.open('agence/index.php?pe=1','_blank','toolbar=no,location=no,directories=no,fullscreen=yes,status=no,menubar=no,scrollbars=yes,resizable=no,left=0,top=0');
}

// open newsletter
function opennl() {
window.open('../popupnl.php','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=518,height=300,left=0,top=0');
}

