function form_validator(theForm)
{

	if(document.getElementById('rating').value == 0) {
		 alert("You must rate the album 1-10.");
		 document.getElementById('rating').focus();
		 return(false);
	}

	return (true);
}
