<!-- Beginning of JavaScript Applet -------------------
        if (document.images) 
        {            
        contacton = new Image(); 
        contacton.src = "images/ContactUs_on.gif";
        abouton = new Image(); 
        abouton.src = "images/AboutUs_on.gif";              
		programson = new Image(); 
        programson.src = "images/Programs_on.gif";              
        homeon = new Image();           
        homeon.src = "images/Home_on.gif";
        registrationon = new Image();             
        registrationon.src = "images/Registration_on.gif";
        schedulefeeson = new Image();           
        schedulefeeson.src = "images/ScheduleFees_on.gif";    
	    rationaleon = new Image();           
        rationaleon.src = "images/Rationale_on.gif";	    
            
        contactoff = new Image(); 
        contactoff.src = "images/ContactUs_off.gif";
        aboutoff = new Image(); 
        aboutoff.src = "images/AboutUs_off.gif";              
		programsoff = new Image(); 
        programsoff.src = "images/Programs_off.gif";              
        homeoff = new Image();           
        homeoff.src = "images/Home_off.gif";
        registrationoff = new Image();             
        registrationoff.src = "images/Registration_off.gif";
        schedulefeesoff = new Image();           
        schedulefeesoff.src = "images/ScheduleFees_off.gif";    
	    rationaleoff = new Image();           
        rationaleoff.src = "images/Rationale_off.gif";	    
        }

        function imgOn(imgName)
        {
                if (document.images)
                document[imgName].src = eval(imgName + "on.src");
        }

        function imgOff(imgName)
        {
        if (document.images)
                        document[imgName].src = eval(imgName + "off.src");
        }
		
function newWindow(filetodisplay)
	// This function opens a new window with the specified page values.
	{		
		var defWindow 
		
		switch (filetodisplay)
		{
			case "Huskies":
				defWindow = window.open('HuskiesInHouse.shtml', 'Huskies', 'height=350,width=270,scrollbars=no');
				defWindow.focus();
				break;
				
			case "Learn":
				defWindow = window.open('LearntoSkate.shtml', 'Learn', 'height=350,width=270,scrollbars=no');
				defWindow.focus();
				break;
				
			case "Adult":
				defWindow = window.open('AdultClinic.shtml', 'Adult', 'height=350,width=270,scrollbars=no');
				defWindow.focus();
				break;
				
			case "Skills":
				defWindow = window.open('SkillsClinic.shtml', 'Skills', 'height=500,width=350,scrollbars=yes');
				defWindow.focus();
				break;
				
			case "YouthSkills":
				defWindow = window.open('YouthSkillsClinic.shtml', 'YouthSkills', 'height=500,width=350,scrollbars=yes');
				defWindow.focus();
				break;
								
			case "TourneyLodging":
				defWindow = window.open('Tournament/TourneyLodging.html', 'TourneyLodging', 'height=600,width=450,scrollbars=yes');
				defWindow.focus();
				break;
				
			case "TourneyRestaurants":
				defWindow = window.open('Tournament/TourneyRestaurants.html', 'TourneyRestaurants', 'height=600,width=450,scrollbars=yes');
				defWindow.focus();
				break;
				
			case "TourneyDirections":
				defWindow = window.open('Tournament/TourneyDirections.html', 'TourneyDirections', 'height=600,width=450,scrollbars=yes');
				defWindow.focus();
				break;
				
			default:
				break;
		}

		return
	} 
// -- End of JavaScript code -------------- -->