﻿winWidth = 400;
winheight = 400;
if (screen){
   winWidth = screen.width;
   winHeight = screen.height;
}
function popupWindow(win){
	newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
}
function popcenter(page,largeur,hauteur,options)
{
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//-->