function gotu(kuh)
{
  window.location.href = kuh;
}
function setstyle(eleid, styleid) {
  document.getElementById(eleid).id = styleid;
}
function confi(link, text) { 
	if( confirm(text) ) {
		window.location.href = link;
	} 
}
function visibility_inNews (id)
{
		if (document.getElementById("visibility_id_" + id).style.display == 'none')
		{
			document.getElementById("visibility_id_" + id).style.display = "";
		}
		else
		{
			document.getElementById("visibility_id_" + id).style.display = "none";
		}
}
function classswitch ( id, classname ) {
   document.getElementById( id ).className = classname;
}
function hovermp_in ( idone, idtwo ) {
   document.getElementById( idone ).className = 'menu_ol_h';
   document.getElementById( idtwo ).className = 'menu_point_h';
}
function hovermp_out ( idone, idtwo ) {
   document.getElementById( idone ).className = 'menu_ol';
   document.getElementById( idtwo ).className = 'menu_point';
}
function hider (id) {
		var x = document.getElementById(id);
		
		if(x.style.display == "inline") {
			x.style.display = "none";
		} else {
			x.style.display = "inline";
		}

}