<head> <title>test</title> <script language="JavaScript"> function image(Pic,wVal,hVal){ subWin = window.open("","subwindow","width="+ wVal + ",height=" + hVal +",top=0,left=0"); subWin.document.open(); subWin.document.write('<html><head><title>image</title></head><body background="'+ Pic +'"></body></html>'); subWin.document.close(); } </script> </head> <body><a href="javascript:void(0)" onClick="image('pic1.jpg',400,400)"><img src="thumb1.jpg"></a> </body>
subWin.document.title="yada yada yada";