document.write("\n");
document.write(" \n");
document.write("Please solve the math problem above and type in the result. e.g. for 1+1, type 2.\n");
function checkCaptcha()
{
document.getElementById("captcha").value = document.getElementById("captcha_temp").value;
return true;
}
window.onload = function()
{
var newElem = document.createElement("input");
newElem.setAttribute("type", "hidden");
newElem.setAttribute("id", "captcha");
newElem.setAttribute("name", "captcha");
document.forms["orderform"].appendChild(newElem);
document.getElementById("orderform").onsubmit = checkCaptcha;
}