// JavaScript Document
function jump(who){
	if(who == undefined){
	}else{
		if(who==0){
		alert("jump then "+who+ "nope");
		}else{
		document.location.href = 'index.asp?p='+who;
		}
	}
}
	
function doSearch(){
	var strTerm = document.getElementById("term").value;
	//alert(strTerm);
	if (strTerm != ''){
		document.frmSearch.submit();
	}
}

function showBrochure(state){
		if(state==1){
		document.getElementById("flshHder").className="hiddenObj";
		document.getElementById("flash").className="visibleObj";
		}
}
