/*
=============================================================
Estilo 
=============================================================
*/
function cambiarcss(id, newClass){
	identity=document.getElementById(id);
	identity.className=newClass;
}
/*
=============================================================
Navegación
=============================================================
*/

function urlOpen(dir)
{
	window.location.href=dir;
}

function urlOpenOW(dir)
{
	window.open(dir, "_blank"); 
}


function detectarNavegador(){

    var browserType=navigator.userAgent;
    if (browserType.indexOf("MSIE")==-1)
	{
	window.location.href="alertaFF.html";
	 return false;
	}
		else
	{
	 return true;
	 }
	 
}

/*
=============================================================
Buscador Aplicacion
=============================================================
*/

function buscar()
{
	if (document.formulario.campo.value.length>0)
		document.formulario.submit();
	else
		alert("Introduzca el texto a buscar.");
}




