﻿    function showEnews()
    {
        window.location = "Newsletter.aspx";
    }
    function gohome()
    {
        window.location = "Default.aspx";
    }
    
	function highlightDIV(field, divclassname)
	{
		//field.style.cursor = "hand";
        document.getElementById(field).className = divclassname;
	}
	function unhighlightDIV(field, divclassname)
	{
		//field.style.cursor = "auto";
        document.getElementById(field).className = divclassname;
    }
    
    function showDIV(field) {
        document.getElementById(field).style.position = "static";
        document.getElementById(field).style.visibility = "visible";
        document.getElementById(field).style.display = "block";
        document.getElementById("show" + field).style.visibility = "hidden";
        document.getElementById("show" + field).style.position = "absolute";
    }
    function hideDIV(field) {
        document.getElementById(field).style.position = "absolute";
        document.getElementById(field).style.visibility = "hidden";
        document.getElementById(field).style.display = "none";
        document.getElementById("show" + field).style.visibility = "visible";
        document.getElementById("show" + field).style.position = "static";
    }

