var hWnd;

function openWindow(foto,titulo, hdt,wdt) {
	//if (hWnd) hWnd.close();
	params = "location=no,status=no,directories=no,scrollbars=no,toolbar=no,menubar=no,resizable=no,left=100,top=100,width=" + wdt + ",height=" + hdt;
	inicio	= "<html>\n<head>\n\t<title>" + titulo + "</title>\n</head><body background='";
	final	= "'></body>\n</html>";
 	hWnd=window.open("","popWindow", params);
	hWnd.resizeTo(wdt + 10, hdt + 29);

	hWnd.document.open("text/html","replace");
	hWnd.document.write(inicio + foto + final);
	hWnd.document.focus();
	hWnd.document.close();
	
};

