// JavaScript Document
/**
 * @author Luigi Vergani - Vergani&Gasco S.r.l.
 * @param {Object} width larghezza minima dello stage
 * @param {Object} height altezza minima dello stage
 */
function checkSize(width, height) {
	if(document.getElementById) {
	
		elemento=document.getElementById('flashcontent');
		
		if(window.document.body.offsetWidth > width && window.document.body.offsetHeight > height) {
			window.document.body.style.overflow='hidden';
		} 
		
		if(window.document.body.offsetHeight > height) {
			elemento.style.height=window.document.body.offsetHeight;

		} 

		if(window.document.body.offsetWidth > width) {
			elemento.style.width=window.document.body.offsetWidth;
		} 
		
		if(window.document.body.offsetWidth <= width) {
			elemento.style.width = width;
			window.document.body.style.overflow='scroll';
		}
		
		if(window.document.body.offsetHeight <= height) {
			elemento.style.height = height;
			window.document.body.style.overflow='scroll';
		}
	}
}