var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function popUpWin(url){
	closeWin();
	x = 610;
	y = 610;
	xscreen = screen.width;
	yscreen = screen.height;
	pag = url;
	newWin=window.open('', '', 'width=' + x +',height= ' + y +',scrollbars=no,resizable=no,titlebar=no');
	newWin.document.write("<html><head><title>Maison Rosset</title></head><body bgcolor=\"#000\" style=\"margin:0;padding:0;vertical-align:center; \"><table width=\"" + x +"\" height=\""+y+"\" cellpadding=\"0\" cellspacing=\"0\"><tr valign=\"middle\">");
	newWin.document.write("<td align=\"center\" valign=\"middle\"><img src=\"" + pag + "\"></td>");
	newWin.document.write("</tr></table></body></html>");
	newWin.moveTo(xscreen/2-x/2,yscreen/2-y/2);
	return false;
}