﻿<!--
function ClearSearch()
{
	frm = eval(document.getElementById("cse-search-box"));
	frm.googlesearchbox.value = "";
}

function SubmitSearch()
{
	frm = eval(document.getElementById("cse-search-box"));
	if ((frm.googlesearchbox.value != "") && (frm.googlesearchbox.value != "Search"))
	{
		frm.submit();
	}
	else
	{
		alert("Please enter a keyword to search.");
	}
}

function RollOver(img, state) {
            
        temp = eval("document.img" + img);
    			
	    if (state == 1)  //TURN IT ON.
	    {
		    temp.src = imgOn[img].src;
	    }
	    else if (state == 0)  //TURN IT OFF.
	    {
		    temp.src = imgOff[img].src;
	    }
    }
    
function AddFavorites()
{   
    title = document.title;
    url = window.location.href;

    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title, url,"");
    } else if( window.external ) { // IE Favorite
        window.external.AddFavorite( url, title); 
    } else if(window.opera && window.print) { // Opera Hotlist
        return true; 
    } else
    {
        window.alert( 'Please use your browser\'s bookmarking utility to create a bookmark' );
    }
}

function EmailFriend()
{ 
	window.location = 'mailto:?subject=I thought you might be interested in this&body=' + location.href;
}

function PrintPage()
{ 
	window.print();
}


-->

