function contactUs(){
	var temp = false;	
	var cu = document.cu;
        if(cu.nm.value == ''){
                alert('Name cannot be blank.');
                cu.nm.focus();
        }else if(cu.email.value == ''){
                alert('E-Mail cannot be blank.');
                cu.email.focus();
	}else if(!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(cu.email.value))){
		alert("Invalid E-mail Address! Please re-enter.")
                cu.email.focus();
	}else if(cu.msg.value == ''){
		alert('Message cannot be blank.');
		cu.msg.focus();
	}else
		temp = true;

	return temp;
}

function getPDF(pdf){
	mypage = "pdfs/"+pdf+".pdf";
	myname = "JT";
	w = "640";
	h = "480";
	popUp(mypage, myname, w, h);
}
function popUp(mypage, myname, w, h){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=no,scrollbars=yes,resizable,location=no';
	window.open(mypage,myname,settings);

}
function searchSite(){
	var key = document.srchfrm;
	if(key.srchtxt.value == ''){
		alert('You must enter keywords to search!');
		key.srchtxt.focus();
		return false;
	}else{
		webpage_id = 100;
		key.submit();
		return true;
	}	
}
