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){
	w=window.open(url);
	w.focus();
}
function amplia_foto(elem){
  var w = window.open('',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';
}*/