/* Cimfo 
   Version: 1.1.1		Ultima Modificacion:	22/03/02 
*/


function ChangeLocation(vDirectory,vURL)
{
	if (window.top.frames.MainFrame.frames.TopFrame)
	{
		if (!window.top.frames.MainFrame.frames.TopFrame.CancelChangeLocation)
			if (vURL.indexOf(".asa")<0)
			{
				window.top.frames.MainFrame.frames.TopFrame.document.all["PaginaAnterior"].value+="|"+document.location;
				var aux="";
				if (vDirectory!="")
					aux=vDirectory+"/";
				aux+=vURL;
				document.location=aux;
			}
	}
	else
		document.write("ChangeLocation Error: Debe acceder desde la página principal");
}

function AddTopMenu(vText)
{
	//Debe añadirse antes de llamar a changeLocation
	if (window.top.frames.MainFrame.frames.TopFrame)
	{
		window.top.frames.MainFrame.frames.TopFrame.document.all["MenuAnterior"].value+="|"+vText;// Historial de menúa
		window.top.frames.MainFrame.frames.TopFrame.document.all["PaginaContent"].value=vText;// Menu actual
		window.top.frames.MainFrame.frames.TopFrame.document.all["TitleDiv"].innerHTML=window.top.frames.MainFrame.frames.TopFrame.document.all["PaginaContent"].value;// cambia la Capa del menú
	}
}