

function open_menu(id)
{
	document.getElementById('menu_td'+id).style.display= '';
	if (typeof jQuery == 'undefined') return;
	try{
		if ($('#menu_td'+id).parents('tr:first').find('td:eq(1) div:eq(0)')[0].id == 'menu_td'+id)
			$('.cmbSearch').css({ 'visibility' : 'hidden' });
	}
	catch(e){}
}

function close_menu(id)
{
	document.getElementById('menu_td'+id).style.display='none';
	if (typeof jQuery == 'undefined') return;
	$('.cmbSearch').css({ 'visibility' : 'visible' });
}