<?xml version="1.0" encoding="GB2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="1.0" encoding="GB2312" indent="yes"/>
<xsl:template match="/">
<script language="javascript">
<![CDATA[
function pwin(url)
{
var p=window.open(url,'popwin','width=480,height=300,scrollbars=yes');
p.focus();
}
]]>
</script>
<table width='100%' border='0' align='center' cellpadding='0' cellspacing='1'>
<tr align='center'>
<td height='22' bgcolor='#E6E4E4'>楼盘名称</td>
<td width='180' bgcolor='#E6E4E4'>商业圈</td>
<td width='50' bgcolor='#E6E4E4'>楼层</td>
<td bgcolor='#E6E4E4'>面积</td>
<td bgcolor='#E6E4E4'>售价</td>
<td bgcolor='#E6E4E4'>详情</td>
</tr>

<xsl:for-each select="/xml/row">
<a href='javascript:pwin("http://zf.house.sina.com.cn/pop/office_infor2.asp?id={id}")' class='h03'>
<tr onmouseover="this.style.backgroundColor='#CCEEFF'" onmouseout="this.style.backgroundColor=''" style="cursor:hand" bgcolor='#F5F5F5'>
<td height='20' align='center'><xsl:value-of select="wyname" /></td>
<td><xsl:value-of select="shangquan" /></td>
<td align='center'><xsl:value-of select="LayerNo"/></td>
<td align='center'><xsl:value-of select="round(AllArea)"/></td>
<td align='center'><xsl:value-of select="round(Price*100)*0.01"/>万/m<sup>2</sup></td>
<td align='center'>
查看
</td>
</tr>
</a>
</xsl:for-each> </table>
</xsl:template>
</xsl:stylesheet>