// JavaScript Document

function fullwin() {
	max = window.open("main.html","","toolbar=no,menubar=no,location=no,status=yes,scrollbars=no,resizable=no");
	max.moveTo(0,0);
	max.resizeTo(screen.availWidth,screen.availHeight);
}
