function Nav()
{
	var IE4 = navigator.appName

	if((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >=4))
	{
		if((screen.width == 800) && (screen.height == 600))
		{
			window.location ="/seismology/frm_00.htm";	
		}
		else
		{
			alert("Este sitio se visualiza correctamente en 800 x 600")
			window.location ="/seismology/frm_00.htm";	
		}

	}
	else
	{
		alert("Por el momento sólo disponible para MS Internet Explorer 4 o superior");
		//window.location ="/seismology/blank.htm";	
		window.location ="/seismology/frm_00.htm";
	}
}


