<!-- Original:  Ronnie T. Moore, Editor -->
<!-- Web Site:  The JavaScript Source -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin

function newWin(URL, WIDTH, HEIGHT) {
windowprops = "left=10,top=10,width=" + (WIDTH+0) + ",height=" + (HEIGHT+0);

text = "<HTML><HEAD><TITLE>J. Wood Painting Co. | Picture Enlargement</TITLE></HEAD>";


text += "<BODY BGCOLOR='000000' BGCOLOR='cccc99'";

text += " LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'";

text += "onLoad='self.focus() 'onBlur='self.close()'><center><table cellpadding=0 cellspacing=0 border=0><tr><td width=100% height=100% align=center valign=middle><a href=javascript:self.close()\;><img src='" + URL + "' border='0'></a>";
// <TABLE CELLPADDING='0' CELLSPACING='0' BORDER='2'><TD><img src='" + URL + "'></TD></TABLE>
text += "</td></tr></table></center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
//  End -->