﻿var browser = "null"
function rescale(){
	var mi_ancho = document.documentElement.offsetWidth;
	var mi_alto = document.documentElement.offsetHeight;
	if (mi_ancho < 773 ) {mi_ancho = 773};
	if (mi_alto  < 580 ) {mi_alto = 580};
	$('body').width(mi_ancho);
	$('body').height(mi_alto);
	//---------------	
	if ($.browser.msie){
		if (mi_ancho > 773 && mi_alto > 580 ){
			$('html').css('overflow', 'hidden');
		}else{
			$('html').css('overflow', 'scroll');
		};
	};
}
$(document).ready(function() {
	if (true){
		function resizeWindow( e ) { rescale() };
		rescale();
		$(window).bind("resize", resizeWindow);
	}
});