//this is only a make shift procedure to allow progress with the website
//and should be revisited to apply stronger security measures
function validateLogon(username, password)
{
	
	if((username=="Basco") && (password=="gtx"))
	{
		location.href = "Downloads/DownloadsPage.html";
		return ;
	}
	else if((username=="gtx") && (password=="Basco"))
	{
		location.href = "Downloads/DownloadsPage.html";		
		return ;
	}
       else
       {
              location.href = "MembersDownloadsFailedLogin.html";		
		return ;
       }
}