		
		//-----------------------------------------------
		//Student Site
		//-----------------------------------------------
		//Author: 	GoLearn Team
		//Date: 	2/25/2004
		//-----------------------------------------------
		//The studnetSite function is used by the 
		//Student Login button on the page.  When called,
		//the studentSite function sets the location of the 
		//browser to the student site (variable site)
		//-----------------------------------------------		 
		function studentSite()
		{
			
			var site = "https://aglearn.usda.gov/plateau/user/usdaAuthenticateUser.do"
			//alert(site);
			location = site;
		}
		//-----------------------------------------------
		//Admin Site
		//-----------------------------------------------
		//Author: 	GoLearn Team
		//Date: 	2/25/2004
		//-----------------------------------------------
		//The adminSite function is used by the 
		//Admin link on the page.  When called,
		//the adminSite function sets the location of the 
		//browser to the Administrator site (variable site)
		//-----------------------------------------------		 
		function adminSite()
		{
			
			var site = "https://aglearn.usda.gov/plateau/admin/usdaAuthenticateAdmin.do"
			//alert(site);
			location = site;
		}		
		
		//-----------------------------------------------
		//New User Site
		//-----------------------------------------------
		//Author: 	GP eLearning Team
		//Date: 	4/05/2005
		//-----------------------------------------------
		//The newUserSite function is used by the 
		//Register link on the page.  When called,
		//the newUserSite function sets the location of the 
		//browser to the New Student site (variable site)
		//-----------------------------------------------		 
		function newUserSite()
		{
			
			var site = "http://www.aglearn.usda.gov/registration_directions.html"
			//alert(site);
			location = site;
		}		
		//-----------------------------------------------
		//eAuth USDA Employee Reg Site
		//-----------------------------------------------
		//Author: 	GP eLearning Team
		//Date: 	4/05/2005
		//-----------------------------------------------
		//The usdaEmpRegSite function is used by the 
		//Register link on the page.  When called,
		//the function sets the location of the 
		//browser to the eAuth site (variable site)
		//-----------------------------------------------		 
		function usdaEmpRegSite()
		{
			
			var site = "http://www.eauth.egov.usda.gov/eauthEmployeeCreateAccount.html"
			//alert(site);
			location = site;
		}		
		//-----------------------------------------------
		//usdaLevel1Site
		//-----------------------------------------------
		//Author: 	GP eLearning Team
		//Date: 	4/05/2005
		//-----------------------------------------------
		//The usdaLevel1Site function is used by the 
		//eAuth account creation link on the registration
		//page.  When called,
		//the function sets the location of the 
		//browser to the eAuth Level1 Reg site (variable site)
		//-----------------------------------------------		 
		function usdaLevel1Site()
		{
			
			var site = "https://eauth.sc.egov.usda.gov/eAuth/selfRegistration/selfRegLevel1Step1.jsp"
			//alert(site);
			location = site;
		}	
		//-----------------------------------------------
		//usdaLevel2Site
		//-----------------------------------------------
		//Author: 	GP eLearning Team
		//Date: 	4/05/2005
		//-----------------------------------------------
		//This function is used by the 
		//Level2 eAuth creation link on the Register page.  
		//When called,
		//the function sets the location of the 
		//browser to the eAuth level2 site (variable site)
		//-----------------------------------------------		 
		function usdaLevel2Site()
		{
			
			var site = "https://eauth.sc.egov.usda.gov/eAuth/selfRegistration/selfRegLevel2Step1.jsp"
			//alert(site);
			location = site;
		}	
		//-----------------------------------------------
		//Registration
		//-----------------------------------------------
		//Author: 	GP eLearning Team
		//Date: 	4/05/2005
		//-----------------------------------------------
		//The newRegistrationSite function is used by the 
		//Register link on the Register page.  When called,
		//the function sets the location of the 
		//browser to the Aglearn Reg completion page.
		//-----------------------------------------------		 
		function newRegistrationSite()
		{
			
			var site = "https://aglearn.usda.gov/plateau/RegisterExternalUser.jsp"
			//alert(site);
			location = site;
		}		
