	//this shows specific page items, for multi pages or "extra details"
	function showPageItem(action, pageitem)
	{
		document.frmMain.txtPageAction.value = action;
		document.frmMain.txtPageItem.value = pageitem;
		document.frmMain.submit();
	}
	
	function kH(e) 
	{
		
		var pK = document.all? window.event.keyCode:e.which;
		if ( pK == 13 )
		{
			if (document.getElementById('txtSearch')) 
			{ 
				document.frmMain.txtPageItem.value='search';
				document.frmMain.submit();
			}
		}
	}
	document.onkeypress = kH;
	if (document.layers) document.captureEvents(Event.KEYPRESS);