// JavaScript Document
function cargar(contenido,Layer)
    {
     var divId = Layer;    // ID of Div which will recover the result.
     var url = contenido;    // 'HTML file to be called' ext *.php, *.inc, ...
     var loader = '';   // 'html for loading' or false
     var effect = 'blind';     // 'appear' , 'blind' , 'highlight' or false
     var ecache = false;     // cache for html file true or false
 
     $ajaxload(divId, url, loader, effect, ecache);
}

function remplazar(contenido,Layer) {
	var divId = Layer; // ID of Div which will recover the result.
	var url = contenido; // 'HTML file to be called' ext *.php, *.inc, ...
	var ecache = false; //cache for html file true or false
	
	$ajaxreplace(divId, url, ecache);
}