
function escribeWeb() {
	
	var oSWF = new ClaseSWF("flash_web", "flash/base.swf", "1034", "100%");
	//oSWF.addParam("wmode", "window");
	//oSWF.addParam("bgcolor", "#000000");
	
	oSWF.addVar("path", "flash/");
	oSWF.addVar("pathSwf", "flash/");
	oSWF.addVar("pathXml", "xml/");
	oSWF.addVar("pathImg", "archivos/img/");
	oSWF.addVar("pathImgGaleria", "archivos/img/");
	oSWF.addVar("pathPdf", "archivos/");
	oSWF.addVar("pathScripts", "inc/");
	
	
	
	// Detecta version flash
	if (oSWF.detect("9.0.0"))
	{
		oSWF.escribe('div_web');
		
	} else {
		/*
		if (confirm("Requiere Flash 8 o superior. Quieres descargarlo?")) {
			location.href = 'http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash';
		}
		*/
	}
	
}

function setFlashHeight( height )//:void
{
	var h = height + "px";
	document.getElementById( "flash_web" ).style.height = h;
	document.getElementById( "div_web" ).style.height = h;
}




//
