function openwindow(Img,ImgWidth,ImgHeight) {
	if (typeof(new_window)=='object') new_window.close();
	
	new_window=window.open('','new_window','directories=no,hotkeys=no,location=no,menubar=no,resizable=no,personalbar=no,scrollbars=no,status=no,width=' + ImgWidth + ',height=' + ImgHeight);

	with (new_window) {
		document.open();
		document.write("<html><head><title>Carnaval de Estarreja</title></head><body leftmargin=\"0\" topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">");
		document.write("<img src=\"" + Img + "\" width=\"" + ImgWidth + "\" height=\"" + ImgHeight + "\">")
		document.write("</body></html>");
		document.close();
		focus();
	}
}
