﻿    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;
	}
