
function editInPlaceNotas() {

	var el=document.getElementsByTagName("h2");

	for (i=0; i<el.length; i++){
		if(el[i].id.substr(0, 6)=="titulo")	{
				 new Ajax.InPlaceEditor(el[i].id, '/js/savetext.php?edit='+el[i].id, { okText: 'Grabar', cancelText: 'Cancelar' }); 
		}	
	}
	
	var el=document.getElementsByTagName("span");

	for (i=0; i<el.length; i++){
		if (el[i].id.substr(0, 6)=="copete"){
			new Ajax.InPlaceEditor(el[i].id, '/js/savetext.php?edit='+el[i].id, { okText: 'Grabar', cancelText: 'Cancelar', rows:5,cols:100 }); 
		}
	}
}


function deleteObjeto(idObjeto){
	
	window.location = "action_objeto.php?accion=del&idRelacion="+idObjeto;
	
}
function deleteObjetoMM(idRelacion,idObjeto){ window.location = "action_objeto.php?accion=delMM&idRelacion="+idRelacion+"&idObjeto="+idObjeto; }

function cambiarVisibilidad(idObjeto){
	
	window.location = "action_objeto.php?accion=visible&idRelacion="+idObjeto;
	
}

function mostrarRegistro(){
	$j(document).ready(function(){
		var now = new Date().getTime();
			tbC_show("Registro","objetos/reg-chica-tkm.php?now="+now+"&",null);
            $j.ajax({ type: "GET", url:"objetos/reg-chica-tkm.php?now="+now+"&",
		success: function(msg){
		$j("#TBc_window").html(msg);
			}
		});
	});
}

function getCookie (name) { 
var dc = document.cookie; 
var cname = name + "="; 

if (dc.length > 0) { 
	begin = dc.indexOf(cname); 
	if (begin != -1) { 
		begin += cname.length; 
		end = dc.indexOf("", begin);
		if (end == -1) end = dc.length;
		return unescape(dc.substring(begin, end));
	} 
} 
return null; 
}

function delCookie(name) { 
document.cookie = name + "=; expires=Thu, 01-Jan-70 00:00:01 GMT" + "; path=/"; 
} 



