// JavaScript Document
function addBookmark(title,url) {
	if (window.sidebar) {
	window.sidebar.addPanel(title, url,"");
	} else if( document.all ) {
	window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
	return true;
	}
}

function cerrarDiv(div){
	
	$("#"+div).hide();
	
}
function mostrarDiv(div){
	$("#"+div).show();
	
}

function editListitem(id, tabla, lang, div) {
var value = prompt("Introduce el título", "")
xajax_editListitem(div, tabla, id, lang, value);
}

