function wopen(w)
{
	window.open(w,'');
}
function hideMenu(param)
{
	var ref=document.getElementById("menuitem"+param+"sub");
	ref.style.visibility="hidden";
}

function showMenu(param)
{

	var ref=document.getElementById("menuitem"+param+"sub");
	ref.style.visibility="visible";
}