var newWindow
function makeNewWindow(content,img) {
	foto1=new Image();
	foto1.src=(img);
	if((foto1.width!=0)&&(foto1.height!=0)){ 
	CreateWindow(content,img);
	} 
	else {
	funzione="makeNewWindow('"+content+"','"+img+"')";
	intervallo=setTimeout(funzione,20);
	}
	}
function CreateWindow(content,img){
	largeh=foto1.width+30;
	altez=foto1.height+40;
	newWindow = window.open("","sub","status=no,screenx=5,screeny=5,resizable=yes,titlebar=no,alwaysraised=yes,height=" + altez + ",width=" + largeh + ",scrollbars=yes")
	if(!newWindow.opener) {
	newWindow.opener = window
	}
//    setTimeout("writeToWindow()", 200)
	writeToWindow(content)
	
	newWindow.focus()
}
function writeToWindow(wincontent) {
	content = "<html><body onblur='window.close();' bgcolor=white leftmargin=0 topmargin=0 offset=0 marginheight=0 marginwidth=0><div align=center>"
	content = content + wincontent
	content = content + "<br><a href=javascript:close()><img src='http://www.sunpowerusa.com/lib/blossomingbeauteas/closewindow.gif' border=0></a></div><br></body></html>"
	newWindow.document.write(content)
	newWindow.document.close()
} 

