﻿$(document).ready(function()
{
	RedirectToDefaultURL();
});

function RedirectToDefaultURL()
{

  var cookieEnabled=(navigator.cookieEnabled)? true : false

    //if not IE4+ nor NS6+
   if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled)
   { 
	   document.cookie="testcookie"
	   cookieEnabled=(document.cookie.indexOf("testcookie")!=-1)? true : false
   }

   if (cookieEnabled) //if cookies are enabled on client's browser
   {
   		var cookie = readCookie("newDefaultURL")

 	 if (cookie != null && cookie != "changecountry") //Read the defaultURL
     {
       var URL = readCookie("newDefaultURL");
       if (URL != "")
       { 
    	   window.location=URL;
       } 
	 } 
	}
}


            





	
	


