function showdiv(divid, VisibleOrNot)
{
	if (document.getElementById(divid))
	{
		if (VisibleOrNot == 1)
		{
			document.getElementById(divid).style.visibility = 'visible';
		}
		else
		{
			document.getElementById(divid).style.visibility = 'hidden';
		}
	}
}
