
<!--

function OnGoMenuFormLink(GoList)

{

   var url = GoList.options[GoList.selectedIndex].value;

   var target = GoList.options[GoList.selectedIndex].className;

   GoList.selectedIndex=0;

   GoList.blur();

   if (url)

   {

      NewWin=window.open(url,target);

      window['NewWin'].focus()

   }

}

function preload_image(_image) {
    var image = new Image;
    image.src = _image;
} 
/* 
 * schimba poza
 */
function change_image (judet) {
    var ShowItem = document.getElementById("harta");
    /*var LinkItem = document.getElementById("area_" + judet); */
    ShowItem.style.backgroundImage = 'url(./assets/imagini/harta/' + judet + '.gif)';
    /*LinkItem.style.textDecoration = "underline";
    LinkItem.style.color="#669900";*/
    return true;
}

/* 
 * stare initiala
 */ 
function hide_image (judet) {
    var ShowItem = document.getElementById("harta");
    /*var LinkItem = document.getElementById("area_" + judet);*/
    ShowItem.style.backgroundImage = 'url(./assets/imagini/harta/workinprogresmap.gif)';
    /*LinkItem.style.textDecoration = "none";
    LinkItem.style.color="#0156A9";*/
    return true;
}




