//Ajuste de tamaņo de Iframe
function adjustIFrameSize(iframeWindow){
 var ie4 = (document.all) ? true : false;
 var ns4 = (document.layers) ? true : false;
 var ns6 = (document.getElementById && !document.all) ? true : false;
 var oBody= contenido.document.body;
 
 if (ie4)
 {
     oFrame= document.all("contenido").style;
	 oFrame.height='1px';
	 oFrame.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight)+20;
 }
 else
 {
     oFrame= document.getElementById("contenido").style;
     oFrame.height='1px';
	 oFrame.height = oBody.offsetHeight+20+'px';
 }
 parent.scrollTo(1,1);
}

function cargaInicioFlash(){
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="750" height="550">');
  document.write('<param name=movie value="/swf/intro.swf">');
  document.write('<param name=quality value=high>');
  document.write('<embed src="/swf/intro.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="750" height="550"></embed>');
  document.write('</object>');
}

function cargaMenuSuperiorFlash(){
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="780" height="100">');
  document.write('<param name=movie value="/swf/cabecera.swf">');
  document.write('<param name=quality value=high>');
  document.write('<embed src="/swf/cabecera.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="780" height="100"></embed>');
  document.write('</object>');
}

function cargaFlashPortal(vFlash){
	  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="440" height="200">');
		document.write('<param name=movie value="/'+vFlash+'">');
		document.write('<param name=quality value=high>');
		document.write('<embed src="/'+vFlash+'" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="440" height="200">');
		document.write('</embed>');
		document.write('</object>');
	
}
