<!-- // Hide script contents from old browsers.
	
	function check_data(my_form) {
	
		var problem = false; // Flag variable.
		
		// Validate the email.
		if (my_form.email.value == "") {
			my_form.email.value = "*** Required!";
			my_form.email.focus();
			problem = true;	
		}
		
		// Validate the URL.
		if (my_form.message.value == "") {
			my_form.message.value = "Please enter a message!";
			my_form.message.focus();
			problem = true;	
		}
		
		// Return true/false based upon problem.
		if (problem) {
			return false;
		} else { 
			return true; 
		}
		
	} // End of function definition.
	
	function popUp(winURL) {
		window.open(winURL,"popup","width=340,height=270");
	}
	
	//-->