﻿<!--
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()
{ 
    
	if( window.sidebar && window.sidebar.addPanel ) {
		window.alert( 'Please click OK then press Ctrl+D to create a bookmark' );
	} else if( window.external && ( navigator.platform == 'Win32' || ( window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1 ) ) ) {
		window.external.AddFavorite( location.href, document.title );
	} else if( window.opera && window.print ) {
		return true;
	} else if( document.layers ) {
		window.alert( 'Please click OK then press Ctrl+D to create a bookmark' );
	} else {
		window.alert( 'Please use your browser\'s bookmarking utility to create a bookmark' );
	}
	//return false;
}
function EmailFriend()
{ 
	window.location = 'mailto:?subject=I thought you might be interested in this&body=' + location.href;
}

function PrintPage()
{ 
	window.print();
}

-->

