// JavaScript Document

/*
Script by Anubhav Misra (anubhav_misra@hotmail.com)
Submitted to JavaScript Kit (http://javascriptkit.com)
For this and 400+ free scripts, visit http://javascriptkit.com
*/

function validate(text1)
{
 if (text1=="morefreedom")
 load('tourNW.html');
 else 
 {
  load('contact.html');
 }
}
function load(url)
{
 location.href=url;
}
