<!--
function report(filename){
w = screen.width; h = screen.height;
if(h>=900){wif=1280;hif=900;}
else {hif=h-100; wif=1280*hif/900; }

x = (screen.width - wif)/2; y = (screen.height - hif)/2;
sub=window.open(filename,+'main','left='+x+',top='+y+',scrollbars=no,location=no,menubar=no,resizable=no,width='+ wif +',height='+ hif);
}
//-->
