function DoPostBack(p_frmName)
{
		if (document.getElementById)
		{
			var theForm = document.getElementById(p_frmName);
			if (theForm != null)
				theForm.submit();
		}
}
