﻿function ImageClicked()
{
    var x=this.event.offsetX;
    var y=this.event.offsetY;
    
    if (x > 95 && x < 220 && y > 75 && y < 125)
        window.location.href = "http://www.ali.algan.at/Main.aspx";
    else if (x > 615 && x < 665 && y > 160 && y < 170)
        window.location.href = "http://www.company.algan.at/Main.aspx";
    else if (x > 215 && x < 240 && y > 525 && y < 540)
        window.location.href = "http://www.blog.algan.at/Main.aspx";
    else if (x > 585 && x < 625 && y > 520 && y < 535)
        window.location.href = "http://www.karate.algan.at/Main.aspx";
}

function ResizeImage()
{
    var img_Ali_Main = document.getElementById("img_Ali_Main");
    if (img_Ali_Main != null) {
        img_Ali_Main.width = screen.width - 150;
        img_Ali_Main.height = screen.height - 190;
    }
}
