
// popup
var center = null;

function wincenter(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
center =window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
if(center.window.focus){center.window.focus();}
}

// print
function printUrl(title, page) {
	return 'print.php?title=' + escape(title) + '&page=' + escape(page);
}
function pixel(img){		if(img && img.filters && img.filters[0]){  img.filters[0].apply();  img.filters[0].play();	}}
