﻿// Fichier JScript fonction de popup
function iPopup(page)
{	
	iPopupCenter(page,700,500,"scrollbars=1,resizable=1");
}

function iPopup2(page)
{
    iPopupCenter(page,300,300,"scrollbars=1,resizable=1");
}


function iPopupCenter(page,largeur,hauteur,options) 
{
  	var top=(screen.height-hauteur)/2;
  	var left=(screen.width-largeur)/2;
 	window.open(page,"uniquepopup","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}