function New_Form1_Validator(theForm)
{  
	if(checkComments(theForm)) return (true);
 	return (false);
}
//
function checkComments(theForm)
{
	var stuff=theForm.CommentsQuestions.value;
	if (stuff == '' || stuff=='If you need a site name, please suggest 1-3 names. If updating an existing site, please supply URL. Please supply as much detail as you can.')
	{
		theForm.CommentsQuestions.value="No comments given";
	}
	return (true);
}
//
function initForm(oForm, element_name, init_txt) {
	frmElement = oForm.elements[element_name];
	frmElement.value = init_txt;
}
function clearFieldFirstTime(element) {
  if (element.counter==undefined) {
	element.counter = 1;
  }

  else {
	element.counter++;
  }

  if (element.counter == 1) {
	element.value = '';
  }
}