﻿// JScript File
function abreDiv() 
{
    
    var nav = navigator.appName;
    
    if (nav == "Microsoft Internet Explorer")
    {   
        var tmp = document.getElementById("fsmenu"); //.height = "145";
	if(tmp != null)
	{
		tmp.height = 415;
	}
    }/*
    else{       
        //eval("fsMenu.style.clip = 'rect(0, 982px, 250px, 0)'");
        //fsMenu.style.clip = 'rect(0, 982px, 250px, 0)';
        document.getElementById("fsMenu").offsetHeight = "210";
    }*/
}

function fechaDiv()
{
    var nav = document.forms[0].elements[0].value =navigator.appName;
    if (nav == "Microsoft Internet Explorer")
    {
       // document.getElementById("fsmenu").height = "145";
        var tmp = document.getElementById("fsmenu"); //.height = "145";
	if(tmp != null)
	{
		tmp.height = 145;
	}
    }
    /*else
    {
        //eval("fsMenu.style.clip='rect(0, 982px, 145px, 0)'");
        MM_changeProp('divfsMenu','','clip','rect(0, 982px, 145px, 0)','DIV');
        //document.getElementById("fsMenu").style.Height = "145";*/
    //}
}
/*
function MM_changeProp(objId, x, theProp, theValue) 
{
    //alert(objId + " * " + x  + " * " + theProp + " * " + theValue);
    //alert('a');
    var obj = null; 
    //alert('b');
    with (document)
    { 
        //alert('c');
        if (getElementById)
        {
            //alert('d');
            obj = getElementById(objId); 
        }
    }
    alert(obj);
    if (obj)
    {
        alert('1');
        if (theValue == true || theValue == false)
        {
            alert('2');
            eval("obj.style."+theProp+"="+theValue);
        }
        else
        {
            alert('3');
            eval("obj.style."+theProp+"='"+theValue+"'");
        }
    }
}
 */