﻿window.onload=Initialise;

var MouseX = 0;
var MouseY = 0;

function LinkSpot(Element){
    if (Element.id == "SpotLondon"){
        window.location.href = "London.aspx";
    }
    else if (Element.id == "SpotAbuDhabi"){
        window.location.href = "AbuDhabi.aspx";
    }
    else if (Element.id == "SpotNewYork"){
       window.location.href = "NewYork.aspx";
    }
    else if (Element.id == "SpotMadrid"){
        window.location.href = "Madrid.aspx";
    }
    else if (Element.id == "SpotHongKong"){
        window.location.href = "HongKong.aspx";
    }
    else if (Element.id == "SpotBeijing"){
        window.location.href = "Beijing.aspx";
    }
}

function Initialise(){
    var s = window.location.href;
    if (s.indexOf("Contact/Address.aspx") != -1) {
        document.getElementById("SpotLondon").style.visibility = "visible";
        document.getElementById("SpotAbuDhabi").style.visibility = "visible";
        document.getElementById("SpotNewYork").style.visibility = "visible";
        document.getElementById("SpotMadrid").style.visibility = "visible";
        document.getElementById("SpotHongKong").style.visibility = "visible";   
        //document.getElementById("SpotBeijing").style.visibility = "visible";   
    }
}