function newSize(datoX,datoY) {
	//console.log("datoX:"+datoX+",datoY:"+datoY);
	if(document.all && !document.getElementById) {
 		document.all['miFlash'].style.pixelWidth = datoX;
 		document.all['miFlash'].style.pixelHeight = datoY;
	}else{
		document.getElementById('miFlash').style.width = datoX;
		//document.getElementById('miFlash').style.height = datoY;
		$("#miFlash").height(datoY);
		$("#miFlash").width(datoX);
	}
}

LTG.addLoadEvent(function(){
	//newSize(1,1);
});
