//Verifica el tipo de explorarados

var IsNetscape = (navigator.appName.indexOf("Netscape") != -1);
IsInternetExplorer = (document.all)? true:false

//Función que cambia la imágenes
function CambiarImagen(ImgId, ImgName, direccion)
{
	if (direccion)
	{
		ImgId.src= "../Images/"+ImgName+"Over.gif";
	}
	else
	{
		ImgId.src = "../Images/"+ImgName+"Out.gif";
	}
}

function CambiarBoton(ImgId, ImgName, direccion)
{
	if (direccion)
	{
		ImgId.src= "../Images/Botones/"+ImgName+"Over.gif";
	}
	else
	{
		ImgId.src = "../Images/Botones/"+ImgName+"Out.gif";
	}
}
function ValidarNumeros(e) {
        tecla = (document.all)?e.keyCode:e.which;
        if (tecla==8) return true;
        patron = /[0-9.]/;
        return patron.test(String.fromCharCode(tecla));
}

function ValidarLetras(e) {
        tecla = (document.all)?e.keyCode:e.which;
        if (tecla==8) return true;
        patron = /\D/;
        return patron.test(String.fromCharCode(tecla));
}
function ValidarFecha(e) {
        tecla = (document.all)?e.keyCode:e.which;
        if (tecla==8) return true;
        patron = /[0-9/]/;
        return patron.test(String.fromCharCode(tecla));
}

function OpenWindowE(url, TextBox, largo, ancho)
{
	var x=showModalDialog(url,'BUSCAR DOCENTE','center:yes;dialogHeight:'+largo+'px;dialogWidth:'+ancho+'px;resizable:no;status:no;');
	if (x == undefined)
	{
		document.getElementById(TextBox).value=document.getElementById(TextBox).value;
	}
	else
	{
		if (x == '')
		{
			document.getElementById(TextBox).value=document.getElementById(TextBox).value;
		}
		else
		{
			document.getElementById(TextBox).value=x;
		}
	}	
}

function OpenWindow(url, titulo, largo, ancho)
{
	var x=showModalDialog(url,titulo,'center:yes;dialogHeight:'+largo+'px;dialogWidth:'+ancho+'px;resizable:no;status:no;');var x=showModalDialog("","BIBLIOTECA",'center:yes;dialogHeight:100px;dialogWidth:100px;resizable:no;status:no;');
}

function Mensajes()
{
	var x=showModalDialog('../Forms/MensajesInicial.aspx','BIBLIOTECA','center:yes;dialogHeight:180px;dialogWidth:350px;resizable:no;status:no;edge:sunken;scroll:no;');
}
