function SubmitPageJS(frm, txt, page, action)
			{
								
				var theForm;
				var theAction;
				theForm = document.getElementsByName(frm)[0];
				theForm.action = page;
				theAction = document.getElementsByName(txt)[0];
				theAction.setAttribute("value", action);
				theForm.submit();
				
								
				/*window.event.returnValue = false
				var obj
				obj = document.all(frm)
				obj.all(txt).value = action
				obj.action = page
				obj.submit()*/
			}
function clickButton(e, lnkLogin)
{
	var bt = document.getElementById(lnkLogin);
	if (typeof bt == 'object')
	{ 
		if (event.keyCode == 13)
		{
			bt.click();
			return false; 
		} 		
	} 
}

