function popimage(formname){

var look='width=500,height=400,resizable,scrollbars';
var imagesrc1=formname.imagesrc.value;
var listname1=formname.listname.value;
var price1=formname.price.value;
var description1=formname.description.value;
var address1=formname.address.value;
var bed_bath1=formname.bed_bath.value;
var size1=formname.size.value;
var features1=formname.features.value;

popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<html><head><title>KatcoNet - Property #'+listname1+'</title>\n');
popwin.document.write('<LINK href="style.css" rel=stylesheet type=text/css></head><body>\n');

popwin.document.write('<TABLE align="center" width="95%" bgcolor="#EEEEEE" border="0">\n');
popwin.document.write('<tr><td colspan="2" valign="top">');
popwin.document.write('<FORM><INPUT type="Button" VALUE="Close Window" onClick="self.close()"></FORM>\n');
popwin.document.write('<img src="'+imagesrc1+'"></td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>List Price<b></td>\n');
popwin.document.write('<td>'+price1+'</td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>Property Description<b></td>\n');
popwin.document.write('<td>'+description1+'</td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>Address<b></td>\n');
popwin.document.write('<td>'+address1+'</td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>Bed/Bath<b></td>\n');
popwin.document.write('<td>'+bed_bath1+'</td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>Property Size<b></td>\n');
popwin.document.write('<td>'+size1+' Sq. Ft.</td><tr>\n');
popwin.document.write('<tr><td valign="top"><b>Property Features<b></td>\n');
popwin.document.write('<td>'+features1+'</td></tr>\n');
popwin.document.write('<tr><td colspan="2" valign="top">');
popwin.document.write('<FORM><INPUT type="Button" VALUE="Close Window" onClick="self.close()"></FORM>\n');
popwin.document.write('</td></tr>\n');
popwin.document.write('</table>\n');


popwin.document.write('</body></html>')
popwin.document.close()
}