function ClearContent(pItem)
	{
			if(pItem.value==pItem.defaultValue)
				{	
					pItem.value="";	
				}
	}
			
	function FillContent(pItem)
	{
		if(pItem.value=="")
			pItem.value=pItem.defaultValue;
	}
	
	function printWindow()
	{
		window.open(document.frmSearch.hdnprint.value+"?print=1",null,"top=0,left=0,height=400,width=670,status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no");
	}
	
	function gopage(ppage,pstr)
	{
		var doc = document.frmSearchResults;
		doc.SearchBox.value = pstr;
		doc.page.value = ppage;
		doc.action = "search_results.asp";
		doc.submit();
	}
	
	function popupWindow(pfile)
	{
		window.open(pfile,null,"top=0,left=460,height=600,width=670,status=yes,toolbar=no,scrollbars=no,menubar=no,location=no");
	}