
function validate(text1,text2)
{
 text1 = text1.toLowerCase();
 text2 = text2.toLowerCase();
 if (text1=='agent' && text2=='1999')
 load('raters2010.html');
 else 
 {
  load('index.html');
 }
}
function load(url)
{
 location.href=url;
}




// end

