// JavaScript Document

function fullScreen() { // custom property for window object
	this.moveTo(0, 0);
	this.resizeTo(screen.availWidth, screen.availHeight);
} // end of fullScreen

// assign custom property to window object
window.maximize = fullScreen;