// JavaScript Document
function WindowSize(){
	
	this.w = WindowSize_getW();
	this.h = WindowSize_getH();
	
	function WindowSize_getW(){
		return screen.width;
	}
	
	function WindowSize_getH(){
		return screen.height;
	}
	
}