	// Yahoo specific stuff: 
        var str1 = '<form method=post onsubmit=\"return validateIt(this)\" action=\"http:\/\/us.1.p3.webhosting.yahoo.com\/forms?login=eyalwir\">'
	var str2 = '<input type=\"hidden\" name=\"subject\" value=\"Article Feedback\">'
        var str3 = '<input type=\"hidden\" name=\"to\" value=\"feedback@theleek.net\">'
        var str4 = '<input type=\"hidden\" name=\"next_url\" value=\"http:\/\/theleek.net\/forms\/feedback_confirm.html\">'
        //var str5 = '<input type=\"hidden\" name=\"required_fields\" value=\"Name,Comments\">'

	document.write(str1);
	document.write(str2);
	document.write(str3);
	document.write(str4);
	//document.write(str5);
	

	function validateIt(theForm) {

  		if (validateName(theForm)) {
			if (validateComments(theForm)) {
				return(true);
			}
		}

		return (false);
	}

	function validateName(theForm) {

  		if (theForm.Name.value == "") {
			alert("Please fill in your name in the \"Name\" field");
    			theForm.Name.focus();
    			return (false);
  		}

  		if (theForm.Name.value.length < 3) {
    			alert("Please enter at least 3 characters in the \"Name\" field.");
    			theForm.Name.focus();
    			return (false);
  		}
		
		else {
			return(true);
		}
	}


	function validateComments(theForm) {

  		if (theForm.Comments.value == "") {
			alert("Please fill in your comments in the \"Comments\" field.");
    			theForm.Comments.focus();
    			return (false);
  		}

  				
		else {
			return(true);
		}
	}
