function testCookie(alink, nextlink)
{
    if( navigator.cookieEnabled == false ){
      var message = "To play Fly-For-Fortune, cookies must be\nenabled in your browser.\n Please enable cookies and your welcome to play.";
      alert( message );
      window.location.href = alink;
    }else{
      //alert( "Cookies-enabled" );
      window.location.href = nextlink;
    }
}