numpage = "1";
addcust = "";
copywriting = "";
hosting = "";
stockphotos = "";
shoppingcart = "";
addpages = "";

function setPagetoOne() {
    numpage = "1 page website ($249).";
}

function setPagetoThree() {
    numpage = "3 page website ($399).";
}

function setPagetoFive() {
    numpage = "5 page website ($549).";
}

function checkthisstuff() {
    
    if(document.SFForm3.copywriting.checked == true) {
        copywriting = " Plus copywriting from Logoworks for $79/hr.";
    } else {
        copywriting = "";
    }
    
    if(document.SFForm3.hosting.checked == true) {
        hosting = " Plus 12 months of website hosting through Register.com for $8.95/month.";
    } else {
        hosting = "";
    }
    
    if(document.SFForm3.stockphotos.checked == true) {
        stockphotos = " Plus stuck photography for $149.";
    } else {
        stockphotos = "";
    }
    
    if(document.SFForm3.shoppingcart.checked == true) {
        shoppingcart = " Plus a shopping cart.";
    } else {
        shoppingcart = "";
    }
    
    if(document.SFForm3.additionalpages.checked == true) {
        addpages = " Plus additional pages at $149 each.";
    } else {
        addpages = "";
    }
    
    templateNumber = document.getElementById('pagenum').innerHTML
    
    document.getElementById('00N0000001MVac').innerHTML = ("Template #" + templateNumber + ". " + numpage + addcust + copywriting + hosting + stockphotos + shoppingcart + addpages);
    
    
}