﻿    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;
	}

//Rollover Image script	
function roll(img_name, img_src) {
    document[img_name].src = img_src;
}
