function settabimg(pagesize)
{
var tab,height;
if (document.all)
    height = document.body.offsetHeight;
else if (document.layers)
    height = window.innerHeight;
tab=Math.ceil((height-pagesize)/2);
if (tab<0) tab=0;
document.images['tabimg'].height=tab;


}
settabimg(408);
