
// JavaScript Document
function get_id(id)
{
	return document.getElementById(id);
}

function get_val(id)
{
return get_id(id).value;
}

function get_sel(id)
{
	return get_id(id).options[get_id(id).selectedIndex].value;
}
function change_focus(id)
{
	document.getElementById(id).focus();
}

function str_replace(search, replace, subject) {
    return subject.split(search).join(replace);
} 


function show_submenu(cat_id)
{
var cat_div = "menu_" + cat_id;
var now_visibility = get_id(cat_div).style.display;
if (now_visibility=="")
{
	get_id(cat_div).style.display = "none";
}
else
{
	get_id(cat_div).style.display = "";
}
}
