// JavaScript Document

artwin=null;

function newWindow(mypage) {
    if (!artwin || artwin.closed) {
     var mystring = "status=yes,toolbar=no,resizable=yes,location=no,scrollbars=yes,menu=no,width=600,height=480,";
     artwin = window.open(mypage,'artwin', mystring);
    } else {
      artwin.location=mypage;
      artwin.focus();
     }
}

function evalForm() {
	var theStatus = 'success';
	var theMessage = 'Please fill in the required feilds.\n';
	
	if (document.myForm.FullName.value == '') {
		theStatus = 'error';
		theMessage = theMessage + ' - Name\n';
	}
	if (document.myForm.EmailAddress.value == '') {
		theStatus = 'error';
		theMessage = theMessage + ' - Email Address\n';
	}
	if (document.myForm.Subject.value == '') {
		theStatus = 'error';
		theMessage = theMessage + ' - Subject\n';
	}
	if (document.myForm.Comments.value == '') {
		theStatus = 'error';
		theMessage = theMessage + ' - Comments\n';
	}
	
	if (theStatus == 'success') {
		window.document.myForm.submit();//return true;
	}
	else {
	  alert(theMessage);
	  return false;

	}
}
