// JavaScript Document
	function press(the_id) {
		document.getElementById(the_id).src = '/wp-content/themes/overtheriver/images/nav/btn_'+the_id+'_on.gif';
	}
	
	function release(the_id) {
		document.getElementById(the_id).src = '/wp-content/themes/overtheriver/images/nav/btn_'+the_id+'_off.gif';
	}
	
// Register for Updates Check before Submit
function checkRegister(){
	if(document.getinvolved.elements['varchar000'].value=='') { 
		alert('Some required information was missing from the form.\n Please include your First Name.');
		document.getinvolved.elements['varchar000'].focus();
		return false;
	}
	if(document.getinvolved.elements['varchar001'].value=='') { 
		alert('Some required information was missing from the form.\n Please include your Last Name.');
		document.getinvolved.elements['varchar001'].focus();
		return false;
	}
	if(document.getinvolved.elements['varchar072'].value=='') { 
		alert('Some required information was missing from the form.\n Please include your Email Address.');
		document.getinvolved.elements['varchar072'].focus();
		return false;
	}
	document.getinvolved.submit();
}	



