function fixDivHeight(datoY) {
		if(document.all && !document.getElementById) {//IE
			document.all['flashcontent'].style.pixelHeight = datoY;
		}else{//FF Safari
			document.getElementById('flashcontent').style.height = datoY;
		}
}
