﻿function CreateBookmarkLink() 
{
  if (window.sidebar) { // Mozilla Firefox Bookmark		
    window.sidebar.addPanel("Avance Rent a car", "http://www.avance.gr","");	
   } 
  else if( window.external ) { // IE Favorite		
    window.external.AddFavorite( "http://www.avance.gr", "Avance Rent a car"); 
   }
    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://rdbms/avance_new/images/menu_left.gif')";
    document.getElementById("mid" + itm).style.backgroundImage  = "url('http://rdbms/avance_new/images/menu_mid.gif')";
    document.getElementById("mid" + itm).className = "menuitemf";
//    document.getElementById("right" + itm).style.backgroundImage = "url('http://rdbms/avance_new/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";
}


