function func_handleDiv(div,status){
	
	var obj_i = div;
	var obj_s = status;
	
	if(obj_s == 1){
		obj_s = "block";
	}else{
		obj_s = "none";	
	}
		
	if(document.all)
	{
		document.getElementById(obj_i).style.display = obj_s;
	}else if(document.getElementById)
	{
		document.getElementById(obj_i).style.display = obj_s;
	}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
