top.window.moveTo(0,0);
var scrwidth =screen.availWidth-1
var scrHeight =screen.availHeight-1
if (document.all) {
top.window.resizeTo(scrwidth,scrHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = scrHeight;
top.window.outerWidth = scrwidth;
}}