
  var lastgoto=new Array();;
  function gotoBox(new_ids) {
    if (lastgoto.length) {
			for (i=0;i<lastgoto.length;i++){
				_goto_highlight(lastgoto[i],true);
		  }
		}
		temp=new String(new_ids);
		lastgoto=temp.split(',');
		for (i=0;i<lastgoto.length;i++){
	    _goto_highlight(lastgoto[i]);
	  }
  }

function _goto_highlight(id,blur) {
	if (blur){
		document.getElementById(id+'_1').style.backgroundImage="url(http://img.hirkereso.hu/img/doboz/fejlec/kapu/kek/tablafelso_left.gif)";
		document.getElementById(id+'_2').style.backgroundImage="url(http://img.hirkereso.hu/img/doboz/fejlec/kapu/kek/tablafelso_bg.gif)";
		document.getElementById(id+'_3').style.backgroundImage="url(http://img.hirkereso.hu/img/doboz/fejlec/kapu/kek/tablafelso_right.gif)";
	}else{
		document.getElementById(id+'_1').style.backgroundImage="url(http://img.hirkereso.hu/img/doboz/fejlec/kapu/bordo/tablafelso_left.gif)";
		document.getElementById(id+'_2').style.backgroundImage="url(http://img.hirkereso.hu/img/doboz/fejlec/kapu/bordo/tablafelso_bg.gif)";
		document.getElementById(id+'_3').style.backgroundImage="url(http://img.hirkereso.hu/img/doboz/fejlec/kapu/bordo/tablafelso_right.gif)";
	}
}

