function OpenContent()
{
document.write("<table border=0 width=100%><tr><td valign=top><font face=Arial size=2>")
}

function OpenPictures()
{
document.write("<td width=160 valign=top>")
}

function AddPicture(_picUrl,_linkUrl,_caption,_altText)
{
document.write( "<a href='"+_linkUrl+"'><img src='"+_picUrl+"' border=0 width=160 height=100" )
if (_altText=="")
{
_altText="click to enlarge"
}
document.write(" alt='"+_altText + "'></a><font face=Arial size=1><br>" )
if (_caption!="")
{
document.write("<center>"+_caption+"</center>")
}
document.write( "<br></font>" )
}

function ClosePictures()
{
document.write("</td>")
}

function CloseContent()
{
document.write("</font></td></tr></table>")
}
