// Help fend off spam spiders
comment_intro = 'Leave a comment...';
function chk_comment() {
	if(document.getElementById('comment').value == '' || document.getElementById('comment').value == comment_intro) return false;
	return true;
}
document.write('<form method="POST" onsubmit="return chk_comment();" >');
document.write('<textarea id="comment" name="comment" onfocus="this.value=\'\'; this.onfocus=null; this.style.color = \'#000\'">' + comment_intro + '</textarea>');
document.write('<strong>Has this driver helped you?</strong> ');
document.write('<input type="submit" name="rating" id="y" value="Yes" >  <input type="submit" name="rating" id="n" value="No">');
document.write('</form>');



