function MostrarOcultarCapa()
{
	if (document.getElementById("CapaOpciones").style.visibility=="visible")
		document.getElementById("CapaOpciones").style.visibility="hidden";
	else
		document.getElementById("CapaOpciones").style.visibility="visible";

}

function AbrirVentanaTemas(ruta)
{
	window.open(ruta,"","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1,width=800,height=600")  

	
}




function MostrarRecorte(recorte,ventana)
{
	var pagina ="<HTML><HEAD>"  +
        "    <TITLE>Imagen</TITLE></HEAD>" +
        "    <BODY bgcolor='#000000' LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'  " +
        "     BACKGROUND=''" + 
		"BGCOLOR='#000000'>  " +
        "      <A HREF='javascript:window.close();'>"+
        "<IMG SRC='" + recorte + "' ALT='&#183; Pulsar para Cerrar la Ventana &#183;' border=0> " +        
        "</A>"+
        "  </BODY></HTML>  ";
	  
	ventana = window.open("",ventana,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=700,height=500" )  
	ventana.document.write(pagina)  
	ventana.document.close()
}

function AmpliarFoto(foto,ancho,alto){  

	var pagina ="<HTML><HEAD>"  +
        "    <TITLE>&#183; Ampliación &#183;</TITLE></HEAD>" +
        "    <BODY LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'  " +
        "    ONBLUR='self.focus()' " + 
		"BGCOLOR='#000000'>  " +
        "      <A HREF='javascript:window.close();'>"+
        "<IMG SRC='" + foto + "' ALT='&#183; Pulsar para Cerrar la Ventana &#183;' border=0> " +        
        "</A>"+
        "  </BODY></HTML>  ";
	  
	ventana = window.open("","ampliacion","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + ancho + ",height=" + alto)  
	ventana.document.write(pagina)  
	ventana.document.close()
}

// estructura
function AbrirVentana(pagina,ventana)
{
window.open(pagina,ventana,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=475,height=400');
}

// flash
function movie(mc,ancho,alto,version)
{

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+ version +'" width="'+ ancho +'" height="'+ alto +'">');
document.write('<param name="movie" value="'+ mc +'">');
document.write('<param name="quality" value="high">');
document.write('<embed src="'+ mc +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ ancho +'" height="'+ alto +'"></embed>');
document.write('</object>');

} 

