function getScreenSize()
{
	return {'width': screen.width, 'height': screen.height};
}

/*jQuery(function()
{
	var $screenW = screen.width;
	var $screenH = screen.height;
	
	var $windowW = jQuery('body').width();
	var $windowH = jQuery('body').height();
	
	//alert($screenW +'x'+ $screenH);
	//alert($windowW +'x'+ $windowH);
	
	/*if($windowW < $screenW)
	{
		window.moveTo(0, 0);
		window.resizeTo($screenW, $screenH);
	}*
});*/
