


function	getPostBackAction()
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
					{
					theform = document.frmMain;
					}
				else 
					{
					theform = document.forms["frmMain"];
					}
				alert(theForm);
			}
			
			
