if( typeof( window.innerWidth ) == 'number' ){
	windowH = window.innerHeight;
	windowW = window.innerWidth;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
	windowW = document.documentElement.clientWidth;
    windowH = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
	windowW = document.body.clientWidth;
	windowH = document.body.clientHeight;
}

if(windowW <= 850 || windowH <= 570)
{
	window.resizeTo(948, 850);
}
