function countresell()
{
var virus = 2.25;
var wusage = 2.00;
var ssl = 4.25;
var ip = 1.50;
var bandwidth = .30;
var storage = .30;
var account = 1.45;

 if (calc.virus.checked) {
   var Nvirus = document.calc.virus.value = virus;
 } else {
   var Nvirus = document.calc.virus.value = 0;
 }

 if (calc.wusage.checked) {
   var Nwusage = document.calc.wusage.value = wusage;
 } else {
   var Nwusage = document.calc.wusage.value = 0;
 }
 
 if (calc.ssl.checked){
   var Nssl = document.calc.ssl.value = ssl;
 } else {
   var Nssl = document.calc.ssl.value = 0;
 }
  
  var Nip = document.calc.ip.value;
  var Nbandwidth = document.calc.bandwidth.value;
  var Nstorage = document.calc.storage.value;
 
var Ntotalmonthly = Nvirus + Nwusage + Nssl + (Nip * ip) + (Nbandwidth * bandwidth) + (Nstorage * storage) + account;
var Ntotalyearly = (Ntotalmonthly * 12) - ((Ntotalmonthly * 12) * .1);

var totalmonthly = (Math.round(Ntotalmonthly*Math.pow(10,2)))/Math.pow(10,2);
var totalyearly = (Math.round(Ntotalyearly*Math.pow(10,2)))/Math.pow(10,2);
 
// document.calc.monthtotal.value = document.PP_rsm1.a3.value = totalmonthly;
// document.calc.yeartotal.value = document.PP_rsy1.amount.value = totalyearly;
 document.calc.monthtotal.value = totalmonthly;
 document.calc.yeartotal.value = totalyearly;
// document.PP_rsm1.a1.value = totalmonthly + 20;
// document.PP_rsm1.item_number.value = "rsm-" Nvirus
 
 }