var selected_item = 0;

function highlight(index) {
  object = eval(index);
  object.style.backgroundColor = "#D4D4D4";
}

function unhighlight(index) {
  object = eval(index);
  object.style.backgroundColor = "#EFEFEF";
}


function unhighlight2(index) {
  object = eval(index);
  object.style.backgroundColor = "#efefef";
}


function select_item(item,type,xa) {

  if(selected_item != ''){
     object = eval(selected_item);
     object.style.backgroundColor = "";
  }
  selected_item = type+item; 
  object = eval(selected_item);
  object.style.backgroundColor = "#D8E7F0";
//  if(xa==1){
//     top.__FFA_mainframe.document.forms.__ffa_TOOLBAR.selected_item_id.value=XArray[item];
//  }else{
//   top.__FFA_mainframe.document.forms.__ffa_TOOLBAR.selected_item_id.value=item;
 // }
//window.alert(item);
  top._LEFTMENU.document.forms.f_a.fi.value=item;
}


var popup_window;
function popup(content, current_sec, sizeX,sizeY) {
	popup_window = window.open('popup.php?content='+content+'&sec='+current_sec, 'popup', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+ sizeX + ',height='+ sizeY);
}
