﻿// Rollover scripts //

function Change(item)
{
        item.style.color = "#f5a449";
}

function ChangeBack(item)
{
    item.style.color = "#ffffff";
}

// End Rollover Script //

// Enlarge Image Script //
function ShowLargeImage(URL)
{
    window.open(URL, "_blank", "directories=no, location=no, menubar=no, scrollbars=no, " + 
        "status=no, titlebar=no, toolbar=no, left=200", false)
}
// End Elarge Image Script //

function ShowUnguja()
{
    var height = 680; 
    var width = 450;
    var top = 0; 
    var left = 0; 
    
    if (document.all)
    {
        top = (screen.height - height) / 2;
        left = (screen.width - width) / 2;
        
        if (height > screen.height) height = screen.height - 20;
        if (width > screen.width) width = screen.width - 20;
    }
    
    if (top < 0) top = 0; 
    if (left < 0) left = 0;
    
    window.open("Map_Unguja_Island_Map_Zanzibar.htm", "_blank", "directories=no, location=no, height=" + 
        height + ", width=" + width + ", menubar=no, resizable=no, scrollbars=no, " + 
        "status=no, titlebar=no, toolbar=no, left=" + left + ", top=" + top, false)
}

function ShowDiv(id, show)
{
//    div = document.getElementById(id); 
//    if (show)
//    {
//        if (div.style.display != "block")
//        {
//            div.style.display="block";
//            div.style.position="absolute";
//            div.style.left=(event.x + 20).toString() + "px";
//            div.style.top=(event.y + document.body.scrollTop).toString() + "px";
//        }
//    }
//    else
//    {
        div.style.display="none";
//    }
}
