function outputEmpty(width,height,bgcolor,pos)
{
width=parseInt(width);
height=parseInt(height);
document.write("<table width="+width+" height="+height+" cellpadding=0 cellspacing=0 border=0 align="+pos+"  bgcolor="+bgcolor+">");
document.write("<tr><td  width='100%' height='100%'></td></tr>");
document.write("</table>");
}



function outputBgImg(width,height,bgImg,pos)
{
width=parseInt(width);
height=parseInt(height);
document.write("<table width="+width+" height="+height+" cellpadding=0 cellspacing=0 border=0 align="+pos+" background=images/"+bgImg+">");
document.write("<tr><td  width='100%' height='100%'></td></tr>");
document.write("</table>");
}



function turn1(x)
{
x.className='have';
}
function turn2(x)
{
x.className='noHave';
}





















