﻿function CreateBookmarkLink() 
{
  if (window.sidebar) { // Mozilla Firefox Bookmark		
    window.sidebar.addPanel("Europcar Crete", "http://www.crete-europcar.com","");	
   } 
  else if( window.external ) { // IE Favorite		
    window.external.AddFavorite( "http://www.crete-europcar.com", "Europcar Crete"); 
   }
    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("left" + itm).style.backgroundImage = "url(http://www.crete-europcar.com/images/menu_left.gif)";
    document.getElementById("mid" + itm).style.backgroundImage = "url(http://www.crete-europcar.com/images/menu_mid.gif)";
    document.getElementById("mid" + itm).className = "menuitemf";
    document.getElementById("right" + itm).style.backgroundImage = "url(http://www.crete-europcar.com/images/menu_right.gif)";
}

function unfocusmenu(itm) {
    document.getElementById("left" + itm).style.backgroundImage = "";
    document.getElementById("mid" + itm).style.backgroundImage = "";
    document.getElementById("right" + itm).style.backgroundImage = "";
    document.getElementById("mid" + itm).className = "menuitem";
}

function openWebsite() {
    var obj = document.getElementById("selectWebsites");
    var url = obj.options[obj.selectedIndex].value;
    if (url != "")
        window.open(url, "");
}
