var imgLinks = ["top_menu_cur_bg"];
var imgs = [];

for(var i = 0; i < imgLinks.length; i++)
{
  imgs[i] = new Image();
  imgs[i].src = "/builder/ecoline/pix/" + imgLinks[i] + ".gif";
}

function light(item)
{
  item.className = "curItem";
}

function shade(item)
{
  item.className = "";
}

function showHideSubmenu(submenuId)
{
  var item = document.getElementById(submenuId).style;
  
  if(item.display == "block")
  {
    item.display = "none";
  }
  else
  {
    item.display = "block";
  }
}

function hideSubmenu(submenuId)
{
  document.getElementById(submenuId).style.display = "none";
}


function view_photo(imgSrc,width,height,title)
{
  var sWidth = screen.availWidth;
  var sHeight = screen.availHeight;

  if(!title)
  {
    title = "";
  }

  var pic_window = window.open('','','width=' + width + ',height=' + height + ',left='+((sWidth-width)/2)+',top='+((sHeight-height)/2)+',scrollbars=yes');
  var str = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">' +
            '<html><head><title>' + title + '</title></head><body style="margin: 0; padding: 0;">' +
            '<img alt="' + title + '" src="' + imgSrc + '" width="' + width + '" height="' + height + '">' +
            '</body></html>';
  pic_window.document.write(str);
  pic_window.document.close();
}

function toggle(id) {
with (document.getElementById(id).style) display=="none"?display="block":display="none";
} 
