// Popup centrée pour images
function popupImage(page,largeur,hauteur) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  w=open("","","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menuBar=no");
	w.document.write("<HTML><HEAD><TITLE>Els Soetaert / Round.Face</TITLE></HEAD>");
	w.document.write("<body bgcolor=\"#ffffff\" leftMargin=\"0\" topMargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
	w.document.write("<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
	w.document.write("<tr><td width=\"100%\" height=\"100%\" align=\"center\" valign=\"middle\">");
	w.document.write("<a href=\"javascript:window.close()\"><img src="+page+" border=\"0\" alt=\"Click here to close\"></a>");
	w.document.write("</td></tr></table>");
	w.document.write("</BODY></HTML>");
	w.document.close();
}

///////////////////////////////////////////////////////////////////////////////////////////////////////

// Popup centrée pour page
function popupcentree(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);
}

