<!--
self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight); 
self.focus();



x=window.screen.width;
y=window.screen.height;
if (x == 800 && y == 600)
window.open('800x600.htm','LM','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,fullscreen=no,resizable=yes,menubar=no');
else
{
if (x == 1024 && y == 768)
{
window.open('1024x768.htm','LM','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=auto,fullscreen=no,resizable=yes,menubar=no');
}
else
if (x == 1152 && y == 864)
{
window.open('1024x768.htm','LM','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,fullscreen=no,resizable=yes,menubar=no');
}
else
if (x == 1280 && y == 960)
{
window.open('1024x768.htm','LM','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,fullscreen=no,resizable=yes,menubar=no');
}
else if (x == 1280 && y == 1024) {
window.open('1280x1024.htm','LM','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=no,fullscreen=no,resizable=yes,menubar=yes');
}
else {
window.open('1280x1024.htm','LM','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,fullscreen=no,resizable=yes,menubar=yes');
}
}




//-->
