function newSize(datoX,datoY) {
	if (parseInt(navigator.appVersion)>3) {
 		if (navigator.appName=="Netscape") {
  			winW = window.innerWidth;
  			winH = window.innerHeight;
 		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			var start = navigator.appVersion.indexOf("MSIE");
			var dot = navigator.appVersion.indexOf(".", start);
			var end = navigator.appVersion.indexOf(";", dot);
			var ieMajor	= parseInt(navigator.appVersion.substring(start + 5, dot));
			
			if(ieMajor >= 7) {
				winW = document.body.offsetWidth-21;
				winH = document.body.offsetHeight;
			}
			else {
				winW = document.body.offsetWidth-17;
				winH = document.body.offsetHeight+4;
			}
		}
	}
	
	if (navigator.appName=="Netscape") {
		if(winW < 854) {
			 winW = 854;
		} else {
			//winW += 16;
		}
		
		if(winH < 698) {
			winW -= 16;	
			winH = 698;
		} else {
			//winH +=  17;
		}
	} else {
		if(winH < 698) {
			winH = 698;
		} else {
			winH -=  4;
		}
		if(winW < 854) {
			winW = 854;
		} else {
			//winW -= 21;
		}
	}
	
	if(document.all && !document.getElementById) {
		document.all['flashcontent'].style.pixelWidth = winW;
		document.all['flashcontent'].style.pixelHeight = winH;
	}else{
	
		document.getElementById('flashcontent').style.width = winW;
		document.getElementById('flashcontent').style.height = winH;
	}
}