//para insertar flash
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>");
}

//para insertar flash transparente
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 pongoflashmenu(pelicula,ancho,alto){
		var URL = document.location.pathname;
		URL = URL.substring(1,URL.length);
		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+"?activo="+URL+"' />");
		document.write("<param name='quality' value='high' />");
		document.write("<param name='wmode' value='transparent' />");
		document.write("<embed src='"+pelicula+"?activo="+URL+"' 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>");
}

//para insertar pop-up centrados
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 botogaleria(idseccion){
 var seccion;
 
 seccion = document.getElementById(idseccion);
 seccion.innerHTML = "<span class='menuseleccionado'>"+idseccion+"</span>"  
}
