function visible(id){
	n = document.getElementById(id);
	if (n.style.display != 'none') Effect.BlindUp(id,{duration: 0.4});
	
	//n.style.display = 'none';
	else Effect.BlindDown(id,{duration: 0.4});
	
	//n.style.display = 'block';
}
function opciones(id, enlace_id){
	visible(id);
	var enlace = document.getElementById(enlace_id);
	if (enlace.innerHTML=='+opc.') {
		enlace.innerHTML='-opc.';
	} else {
		enlace.innerHTML='+opc.';
	}
}
function popup(url, ancho, alto){
	if (!ancho) ancho = 700;
	if (!alto) alto = 500;
	w=window.open(url,'_popup','status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+ancho+',height='+alto);
	w.focus();
}
function abre_en_popup(elem, ancho, alto){
	if (!ancho) ancho = 700;
	if (!alto) alto = 500;
	w=window.open(elem.href,elem.target,'status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+ancho+',height='+alto);
	w.focus();
	return false;
} 
function amplia_foto(elem){
  var w = window.open(elem.href,elem.target,'status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=700,height=500');
  w.focus();
//uso: <a href="url.htm" target="nombre_ventana" onClick="amplia_foto(this);">
}	
/*function texto_checkbox(elem, elem2_id) {
	if (elem.checked) document.getElementById(elem2_id).innerHTML = 'S&iacute;';
	else document.getElementById(elem2_id).innerHTML = 'No';
}*/
