var newWindow;
function makeNewWindow(content,img,name) {    
	foto1=new Image();    
	foto1.src=(img);    
	if((foto1.width!=0)&&(foto1.height!=0)){    
		CreateWindow(content,img,name);}    
	else {    
	funzione="makeNewWindow('"+content+"','"+img+"','"+name+"')"; 
	intervallo=setTimeout(funzione,100);}
	}
function CreateWindow(content,img,name){    
	largeh=foto1.width+60;    
	altez=foto1.height+130;    
	newWindow = window.open("","sub","status=no,screenx=340,screeny=340,resizable=yes,titlebar=no,alwaysraised=yes,height=" + altez + ",width=" + largeh + ",scrollbars=no")    
	if(!newWindow.opener) {        
		newWindow.opener = window    
	}    
		//    setTimeout("writeToWindow()", 100)
		writeToWindow(content,name)        
		newWindow.focus()
	}
function writeToWindow(wincontent,name) {    
	content = "<html><title>PrimeOfficeFurniture.com</title><body bgcolor=white leftmargin=10 topmargin=10 offset=10 marginheight=10 marginwidth=10><div align=center>"    
	content = content + wincontent    
	content = content + "<br><br><B><FONT SIZE=2 color='#000099' face='verdana'>"
	content = content + name
        content = content + "</font>"
         content = content + "<br><font size=1 face=verdana><a href=javascript:close()>close window</a></font></div></body></html>"    
	newWindow.document.write(content)    
	newWindow.document.close()}    
