function GoToTrack() {
	if (document.forms[0].ProBillNo.value !="") 	
		window.location.href="http://www.fastfrate.com/fastnet/fastnet.aspx?ProbillNo=" + document.forms[0].ProBillNo.value;
}

function SubmitFastnetLogin() {
	document.forms[0].submit();
}

function writeCookie(name, value, hours) {
  var expire = "";
  if(hours != null)
  {
    expire = new Date((new Date()).getTime() + hours * 3600000);
    expire = "; expires=" + expire.toGMTString();
  }
  document.cookie = name + "=" + escape(value) + expire + "; path=/";
}
