// greenhouse public CUSTOM JavaScript configuration
	var divName = "";
	var ua = navigator.userAgent.toLowerCase(); 
	var is_pc_ie  = ( (ua.indexOf('msie') != -1 ) && ( ua.indexOf('win') != -1 ) && ( ua.indexOf('opera') == -1 ) && ( ua.indexOf('webtv') == -1 ) );
	//var sFullPath = String(document.location);
	//var SITEBASE = sFullPath.substr(0,sFullPath.lastIndexOf('/')+1 );
	var IE6;
		window.addEvent("domready",_initPage);
	
		function _initPage(){
			IE6 = (Browser.Engine.trident && Browser.Engine.version < 5)? true : false;
			if(typeof loadGoogleMaps == "function") loadGoogleMaps();
			if(typeof setCarousel == "function") setCarousel();
			if(typeof initSlideshow == "function") initSlideshow();
			if(typeof pageWidthCheck == "function") pageWidthCheck();
			
			return true;
		};
		
		 function exportExcel(id) {
		 var typeId = document.form1.ddlType[document.form1.ddlType.selectedIndex].value;
		 var sSearch = document.form1.txtSearch.value;
		 var Start = document.form1.ddlStartMonth.value +"/"+ document.form1.ddlStartDay.value +"/"+ document.form1.ddlStartYear.value;
		 var End = document.form1.ddlEndMonth.value +"/"+ document.form1.ddlEndDay.value +"/"+ document.form1.ddlEndYear.value;
		 var sLink = "adminMain.asp?id="+id+"&typ=" + typeId + "&search=" + sSearch + "&start=" + Start + "&end=" + End + "&excel=1";

		 openWindow(sLink);
		}
		function filterSelected(id){
		var typeId = document.form1.ddlType[document.form1.ddlType.selectedIndex].value;
		var sSearch = document.form1.txtSearch.value;
		 var Start = document.form1.ddlStartMonth.value +"/"+ document.form1.ddlStartDay.value +"/"+ document.form1.ddlStartYear.value;
		 var End = document.form1.ddlEndMonth.value +"/"+ document.form1.ddlEndDay.value +"/"+ document.form1.ddlEndYear.value;

		document.location.href="adminMain.asp?id="+id+"&typ=" + typeId + "&search=" + sSearch + "&start=" + Start + "&end=" + End;
		}
