// JavaScript Document

function newSize(datoX,datoY) {
	var winW;
	var winH;
if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  winW = window.innerWidth-16;
  winH = window.innerHeight-16;
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  winW = document.body.offsetWidth-20;
  winH = document.body.offsetHeight-20;
 }
}

if(winH < 500) {
	winH = 500;
}
if(winW < 775) {
	winW = 775;
}
	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+16;
	}
}