function pop(Url){
  window.open(Url,"","width=300,height=250,copyhistory=no,directories=no,menubar=no,location=no,scrollbars=yes,resizable=1,toolbar=no");
}
function recalc_order() 
{
  var total = 0;
   if (document.getElementById("module1").checked)
        total += 28;
   if (document.getElementById("module2").checked)
        total += 50;        
   if (document.getElementById("module3").checked)
        total += 35;
   if (document.getElementById("module4").checked)
        total += 35;
   if (document.getElementById("module5").checked)
        total += 35;        
   if (document.getElementById("module6").checked)
        total += 35;                
   if (document.getElementById("module7").checked)
        total += 225;                
   if (document.getElementById("module8").checked)
        total += 28;                
   if (document.getElementById("module9").checked)
        total += 28;                        
   if (document.getElementById("module10").checked)
        total += 35;                
 
  total += 195;
  document.getElementById("result").innerHTML = ""+total;
}