//storeDataForTracking();

//REDIRECT BASED ON DEVICE, IMMEDIATELY
if ((navigator.userAgent.match(/iPad/i))) {
   window.location = "http://ipad.eurorscgme.com";
}
else if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/blackberry/i)) || (navigator.userAgent.match(/Mobile/i)) || (navigator.userAgent.match(/Android/i))) {
   window.location = "http://mobile.eurorscgme.com";
}
else {
    var targetURL = parseUrl();
    location.href = targetURL;
}



