//

var M="Include your email address if you'd like a reply...";

function fillform(){
  document.getElementById("comments").value=M;
}

function clearbox(X){
  if(X.value==M){X.value=""}
}

function checkform(){
  var comments=document.getElementById("comments").value
  if(comments.length<2 || comments==M){
    alert('Please enter a comment!')
    return false
  } else {
  	//document.getElementById("comments_button").disabled=true;
  	//document.getElementById("comments").disabled=true;
	window.open('','feedback','width=300,height=200');
	return true;
  }
}


