// JavaScript Functions


//Screen Maximizer
function MaxMe() {
	window.moveTo(0,0);
	window.resizeTo(screen.width,screen.height);
}

