<!--
		function OpenPopup(url, name, w, h) 
		{
			if (navigator.appName == "Microsoft Internet Explorer")
			{
				var winX = (screen.availWidth - w)*.5;
				var winY = (screen.availHeight - h)*.5;
				popupWin = window.open(url, name, "status=no,scrollbars=yes,menubar=no,toolbar=no,width=" + w + ",height=" + h + ",left=" + winX + ",top=" + winY);
			}
			else
			{
				var winX = window.screenX + ((window.outerWidth - w) / 2);
				var winY = window.screenY + ((window.outerHeight - h) / 2);
				popupWin = window.open(url, name, "status=0,scrollbars=1,menubar=0,toolbar=0,width=" + w + ",height=" + h + ",screenX=" + winX + ",screenY=" + winY);
			}
		}	
		
		function nav_on(nid, blnSubNav)
		{
			document.getElementById('img_btn_nav' + nid).style.visibility = 'hidden';
			
			for (i=1; i<=3; i++)
			{
				if (nid != i)
				{
					hide_subnav(i);
				}
			}
		
			if (blnSubNav)
				show_subnav(nid);
		}
	
		function nav_off(nid, blnSubNav)
		{
			document.getElementById('img_btn_nav' + nid).style.visibility = 'visible';
	
			for (i=1; i<=3; i++)
			{
				if (nid != i)
				{
					hide_subnav(i);
				}
			}
	
			if (blnSubNav)
				hide_subnav(nid);
		}
		
		function show_subnav(did)
		{
		// not need since no dropdowns
//    	    document.getElementById('subnav' + did).style.display = 'block';
		}	
	
		function hide_subnav(did)
		{
		// not need since no dropdowns
//    	    document.getElementById('subnav' + did).style.display = 'none';
		}
		
		function updatePage(intPage)
		{
			window.document.frmSearch.PAGE.value = intPage;
			window.document.frmSearch.submit();
		}
		
		function enterCheck(e)
		{
		    var key;

		    if(window.event)
		          key = e.keyCode;     //IE
		    else
		          key = e.which;     //firefox

		    if((key == 0)||(key == 13))
				window.document.frmSearch.PAGE.value = 1;
		}		
-->