/*** TOGGLE ****************************************************************/

function toggleDiv(id){
	if(document.getElementById(id).style.display == "none"){
	document.getElementById(id).style.display = "block";
	}else{
	document.getElementById(id).style.display = "none";
	}
}

function openToggle(id){
	document.getElementById(id).style.display = "block";
}

/*** jump meni ****************************************************************/

function jump_menu(targ,
 selObj,restore){
  eval(targ+".location='"+
   selObj.options[selObj.selectedIndex].
    value+ "'");
  if (restore) selObj.selectedIndex=0;
}

