window.onresize= getWindowSize; // On window resize
window.onload= getWindowSize;
function getWindowSize(i) {
	var minWidth = '1240';
	var minHeight = '818'; 
	var myWidth = 0, myHeight = 0;
	var scrollbarMargin = 10;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	} else if( document.documentElement &&
		( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
		scrollbarMargin = 0;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}

	if(myWidth < minWidth)
	{
		myWidth = minWidth;
		document.body.style.overflowX = 'auto';
	}
	else
	{
		myWidth = myWidth; // - scrollbarMargin;
		document.body.style.overflowX = 'hidden';
	}
	
	if(myHeight < minHeight)
	{
		myHeight = minHeight;
		document.body.style.overflowY = 'auto';
	}
	else
	{
		document.body.style.overflowY = 'hidden';
	}

	document.getElementById('content').style.height = myHeight+'px';
	document.getElementById('content').style.width = myWidth+'px';			
}