// JavaScript Document

function Browser() {
	
	this.resize = function( width, height ) {
		window.resizeTo( width, height );
	};
	
	this.move = function( x, y ) {
		window.moveTo( x, y );
	};
	
};