﻿var isIE = /*@cc_on!@*/false;
function rescale(){
	var maxancho = 990
	var maxalto = 530
	var mi_ancho = document.documentElement.offsetWidth;
	var mi_alto = document.documentElement.offsetHeight;
	if (mi_ancho < maxancho ) {mi_ancho = maxancho};
	if (mi_alto  < maxalto ) {mi_alto = maxalto};
	$('body').width(mi_ancho);
	$('body').height(mi_alto);
	//---------------	
	if (isIE){
		if (mi_ancho > maxancho && mi_alto > maxalto ){
			$('html').css('overflow', 'hidden');
		}else{
			$('html').css('overflow', 'scroll');
		};
	};
}
$(document).ready(function() {
	function resizeWindow( e ) { rescale() };
	rescale();
	$(window).bind("resize", resizeWindow);
});
