﻿function CreateBookmarkLink() 
{
  if (window.sidebar) { // Mozilla Firefox Bookmark		
    window.sidebar.addPanel("Europcar Isthmos", "http://www.europcar-thassos.com","");	
   } 
  else if( window.external ) { // IE Favorite		
    window.external.AddFavorite( "http://www.europcar-thassos.com", "Europcar Isthmos"); 
   }
    else if(window.opera && window.print) { // Opera Hotlist		
    return true; 
    } 
}

function LocationInformation(loc_name) {
    window.open("locationmap.aspx?guid=" + loc_name , "LocationInformation",
            "width=492,height=500,toolbar=yes,resizable=0,scrollbars=1");
}

function focusmenu(itm) {
    document.getElementById(itm + "left").style.backgroundImage = "url(http://www.europcar-thassos.com/images/menu_left.gif)";
    document.getElementById(itm + "mid").style.backgroundImage = "url(http://www.europcar-thassos.com/images/menu_mid.gif)";
    document.getElementById(itm + "mid").className = "menuitemf";
    document.getElementById(itm + "right").style.backgroundImage = "url(http://www.europcar-thassos.com/images/menu_right.gif)";
}

function unfocusmenu(itm) {
    document.getElementById(itm + "left").style.backgroundImage = "";
    document.getElementById(itm + "mid").style.backgroundImage = "";
    document.getElementById(itm + "right").style.backgroundImage = "";
    document.getElementById(itm + "mid").className = "menuitem";
}

function openWebsite() {
    var obj = document.getElementById("selectWebsites");
    var url = obj.options[obj.selectedIndex].value;
    if (url != "")
        window.open(url, "");
}
