function max()
{

top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(800,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<800){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = 800;
}
}
focus();
}
