var myNamespace = {};
myNamespace.round = function(number, precision) {
var factor = Math.pow(10, precision);
var tempNumber = number * factor;
var roundedTempNumber = Math.round(tempNumber);
return roundedTempNumber / factor;
};
function myMove(){
var q = 0;
var total = 0;
var title = "";
var totaltitle = "";
q = parseFloat(document.getElementById('qty492').value);
total += q;
title = '-SOS Greeting Card 238 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty493').value);
total += q;
title = '-SOS Greeting Card 239 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty494').value);
total += q;
title = '-SOS Greeting Card 240 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty495').value);
total += q;
title = '-SOS Greeting Card 241 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty496').value);
total += q;
title = '-SOS Greeting Card 242 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty497').value);
total += q;
title = '-SOS Greeting Card 243 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty498').value);
total += q;
title = '-SOS Greeting Card 244 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty499').value);
total += q;
title = '-SOS Greeting Card 245 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty500').value);
total += q;
title = '-SOS Greeting Card 246 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
q = parseFloat(document.getElementById('qty501').value);
total += q;
title = '-SOS Greeting Card 247 ['+q+' Card(s)]
';
if (q != 0){
totaltitle += title;
}
document.getElementById('htmltotal').innerHTML = totaltitle+'
Your total is: '+myNamespace.round(total, 1)+' Card(s)';
document.getElementById('htmltotal2').innerHTML = document.getElementById('htmltotal').innerHTML;
if(myNamespace.round(total, 1) < 1){
document.getElementById('product').disabled = true;
document.getElementById('product').setAttribute('style','background-color: gray !important');//alert("Total is < 50 Cards");
}else
{
//alert("Total is > 50 Cards");
document.getElementById('product').disabled = false;
document.getElementById('product').setAttribute('style','background-color: #00ADF1 !important');
}
}
myMove();