function popUp(winURL,w,h) {
	popWin=window.open(winURL,"popup","width="+w+",height="+h+",scrollbars=yes");
	
	with (popWin.document){
		writeln('<html><head><title>Edward Hines Lumber Co.</title><style type="text/css"><!--body{ background:#000; margin:0px; }--></style></head>');
		writeln('<body bgcolor=#000000 onload="self.focus()" onblur="self.close()">');
		writeln('<img src='+winURL+' style="display:block"></body></html>');
		close();
	}
	
}