// JavaScript Document

// FUNCIONES PARA CAMBIAR EL COLOR DE LAS CELDAS DE UNA TABLA (IE)
function onOver(src,clrOver)
{
	if (navigator.appName != "Netscape")
	{
		if (!src.contains(event.fromElement))
		{
			src.style.cursor = 'hand';
			src.bgColor = clrOver;
		}
	}
        else
        {
	        src.style.backgroundColor = clrOver;
        }
}
function onOut(src,clrIn)
{
	if (navigator.appName != "Netscape")
	{
		if (!src.contains(event.toElement))
		{
			src.style.cursor = 'default';
			src.bgColor = clrIn;
     		}
	}
        else
        {
	        src.style.backgroundColor = clrIn;
        }
}
// funcion para ventana de contacto
function createTarget(t){
window.open("", t, "width=450,height=250");
return true;
}
