/* fichier contenant les javascripts necesaires au bon fonctionnement du site ecusson.be */

function popupImg (i, w, h)
// affiche une image dans une popup
{
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	var p = window.open(i, "popup", "status=no,scrollbars=yes,resizable=no,height="+h+",width="+w+",top="+t+",left="+l);
}

function popup(page, largeur, hauteur)
{
	var L = (screen.width - largeur) / 2;
	var H = (screen.height - hauteur) / 2;

	return window.open(page,"Popup","status=no,scrollbars=yes,resizable=no,height="+hauteur+",width="+largeur+",top="+H+",left="+L);
}

