window.moveTo(0,0);
if (document.all) { // IE
	window.resizeTo(screen.availWidth,screen.availHeight);
} else { // NETSCAPE
	window.outerHeight = screen.availHeight;
	window.outerWidth = screen.availWidth;
}
window.focus();