function popimage(formname){

var look='width='+formname.width.value+',height='+formname.height.value+',top=100, left=150,resizable,scrollbars=no';
var imagesrc1=formname.imagesrc.value;
var listname1=formname.listname.value;

if (!formname=='pictures') {

var price1=formname.price.value;
var spec11=formname.spec1.value;
var spec21=formname.spec2.value;
var spec31=formname.spec3.value;
var features1=formname.features.value;

}

popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<html><head><title>'+listname1+'</title>\n');
popwin.document.write('<LINK href="/5star/style.css" rel=stylesheet type=text/css></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');

popwin.document.write('<TABLE width="100%" border="0" cellspacing="0" cellpadding="0" vspace="0" hspace="0">\n');
popwin.document.write('<tr><td valign="top" align=center>');
popwin.document.write('<FORM><INPUT type="Button" VALUE="Close Window" onClick="self.close()"></FORM>\n');
popwin.document.write('<img src="'+imagesrc1+'"></td></tr>\n');

if (!formname=='pictures') {

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" colspan="2"><b>Specifications<b></td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>spec 1<b></td>\n');
popwin.document.write('<td>'+spec11+'</td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>spec 2<b></td>\n');
popwin.document.write('<td>'+spec21+'</td></tr>\n');
popwin.document.write('<tr><td valign="top"><b>spec 3<b></td>\n');
popwin.document.write('<td>'+spec31+'</td><tr>\n');
popwin.document.write('<tr><td valign="top"><b>Features<b></td>\n');
popwin.document.write('<td>'+features1+'</td></tr>\n');

}
popwin.document.write('</table>\n');
popwin.document.write('</body></html>')
popwin.document.close()
}
