<table width="700" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="600"><p class="pageheader"><%=product_name%></p></td>
<td width="100"><p class="pageheader"><%=strCurrency%> <%=RoundNumber(price)%></p></td>
</tr>
<tr>
<td width="600" class="productListing-data">
<%
if len(product_description) > 0 then
response.write(product_description)
else
response.write("<br /><br /><p align=""center""><b>" & strItemNotAvailable & "</b></p>")
end if
%> </td>
<td width="100" class="center">
<div class="product_extra">
<h2>Extra</h2>
<p>
</p>
</div>
<a href="javascript:;" onclick="PopImage('product','<%=id%>');">
<% if len(product_image) > 0 then %>
<img src="images/products/<%=product_image%>" width="80" alt="<%=product_name%>" /><br />
<%=strBiggerImage%></a> <% end if %></td>
</tr>
<tr>
<td width="600"> <br /> <br /> <table width="600" border="0" cellspacing="0" cellpadding="0" class="productListing">
<tr>
<td colspan="3" class="productListing-heading"> <%=strSpecifications%></td>
</tr>
<%
set rsSpecs = server.createobject("ADODB.recordset")
rsSpecs.cursortype = 3
strSQL = "SELECT product_info_name, product_info_description FROM product_info WHERE product_id = " & id & " AND product_lang_id = " & session("language_id")
rsSpecs.open strSQL, adoCon
even = "odd"
do while not rsSpecs.eof
%>
<tr class="productListing-<%=even%>">
<td width="200" class="productListing-data"> <b><%=rsSpecs("product_info_name")%></b></td>
<td width="10" align="center" class="productListing-data">:</td>
<td class="productListing-data"> <%=rsSpecs("product_info_description")%></td>
</tr>
<%
if even = "even" then
even = "odd"
else
even = "even"
end if
rsSpecs.movenext
loop
rsSpecs.close
set rsSpecs = nothing
%>
</table></td>
<td width="100"> </td>
</tr>
</table>