﻿var isIE = /*@cc_on!@*/false;
function rescale(){
	var mi_ancho = document.documentElement.offsetWidth;
	var mi_alto = document.documentElement.offsetHeight;
	if (mi_ancho < 1000 ) {mi_ancho = 1000};
	if (mi_alto  < 550 ) {mi_alto = 550};
	$('body').css('height',mi_alto);
	$('.contentBox').css('margin-top', (mi_alto-550)/2);
	if (isIE){
		if (mi_ancho > 1000 && mi_alto > 550 ){
			$('html').css('overflow', 'hidden');
		}else{
			$('html').css('overflow', 'scroll');
		};
	};
}
$(document).ready(function() {
	if (true){
		function resizeWindow( e ) { rescale() };
		rescale();
		$(window).bind("resize", resizeWindow);
	}
});
