function togglemenu(oUlId)	{
	var oUl=document.getElementById(oUlId);
	oUl.style.display=((oUl.style.display=="none") ? 'block' : 'none');	}

function vismenu(oUlId)	{
	var oUl=document.getElementById(oUlId);
	oUl.style.display='block';	}

function hidmenu(oUlId)	{
	var oUl=document.getElementById(oUlId);
	oUl.style.display='none';	}


function runMenu(id)	{
	s = "vismenu('" + id + "')";
	setTimeout(s,500);	}


function open_window(link,w,h)	{
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
	newWin = window.open(link,'order',win);
//	newWin.focus();
}
