function validate(formName)
{
if(document.addtobasket.agree.checked==false)
{
    alert("You must agree to our terms and conditions of the license agreement in order to purchase this product.");
    //document.addtobasket.agree.focus();
}
else
location.href = "javascript:submitDoc('addtobasket');";
}