function ShowDropDown(menu,obj)
{
	var dropMenuObj = document.getElementById('DropDown'+menu);
	if(dropMenuObj != null && dropMenuObj != 'undefined')
	{

		var menuItemPos = getObjPosition(document.getElementById('MenuItem'+menu));
		dropMenuObj.style.display = '';
		var dropDownPos = getObjPosition(dropMenuObj);
		dropMenuObj.style.left = ((menuItemPos.x + menuItemPos.width / 2) - dropDownPos.width / 2) + 'px';
		dropMenuObj.style.top = (menuItemPos.y + 19) + 'px';
		
	}
}

function HideDropDown(menu)
{
	var dropMenuObj = document.getElementById('DropDown'+menu);
	if(dropMenuObj != null && dropMenuObj != 'undefined')
	{
		dropMenuObj.style.display = 'none';
		dropMenuObj.style.top = '0px';
		dropMenuObj.style.left = '0px';
	}
}
