function pongoflash(pelicula,ancho,alto){
		document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='"+ancho+"' height='"+alto+"'>");
		document.write("<param name='movie' value='"+pelicula+"' />");
		document.write("<param name='quality' value='high' />");
		document.write("<embed src='"+pelicula+"' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='"+ancho+"' height='"+alto+"'></embed>");
		document.write("</object>");
}


function flash(pelicula,ancho,alto){
		document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='"+ancho+"' height='"+alto+"'>");
		document.write("<param name='movie' value='"+pelicula+"' />");
		document.write("<param name='quality' value='high' />");
		document.write("<param name='wmode' value='transparent' />");
		document.write("<embed src='"+pelicula+"' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' wmode='transparent' width='"+ancho+"' height='"+alto+"'></embed>");
		document.write("</object>");
}

function popup(pag,alto,ancho){

resx = screen.width;
resy = screen.height;
posx = (resx-ancho)/2
posy = (resy-alto)/2



propiedades="width="+ancho+", height="+alto+",top="+posy+",left="+posx+",scrollbars=no, toolbar=no";
window.open(pag,"x",propiedades)

}
function popup2(pag,alto,ancho){

resx = screen.width;
resy = screen.height;
posx = (resx-ancho)/2
posy = (resy-alto)/2



propiedades="width="+ancho+", height="+alto+",top="+posy+",left="+posx+",scrollbars=yes, toolbar=no";
window.open(pag,"x",propiedades)

}

function showInfo(inValor){
 var divinfo = document.getElementById("info"+inValor);
 //var ico = document.getElementById("ico"+inValor);
 if(divinfo.style.display == "block"){
  divinfo.style.display= "none";
  //ico.src="../images/ico_mas.gif" 
 }else{
  divinfo.style.display = "block";
  //ico.src="../images/ico_menos.gif"  
 }
}

function showInfo2(inValor){
window.scrollTo(0,300);
 var divinfo = document.getElementById("info"+inValor);
 if(divinfo.style.display == "block"){
  divinfo.style.display= "none";
 }else{
  divinfo.style.display = "block";
  //ico.src="../images/ico_menos.gif"  
 }
}
