// JavaScript Document


<!--
function update_qnt1(arg) {
var oldvalue = eval(document.cart_quantity1.product_quantity.value);
var next = 0;

if(oldvalue == 1 && arg == -1) {
document.cart_quantity1.product_quantity.value = 1;
next = 1;
}
if(oldvalue == 99 && arg == 1) {
document.cart_quantity1.product_quantity.value = 99;
next = 1;
}

if(next == 0)
document.cart_quantity1.product_quantity.value = oldvalue + arg;
}
//-->

<!--
function update_qnt2(arg) {
var oldvalue = eval(document.cart_quantity2.product_quantity.value);
var next = 0;

if(oldvalue == 1 && arg == -1) {
document.cart_quantity2.product_quantity.value = 1;
next = 1;
}
if(oldvalue == 99 && arg == 1) {
document.cart_quantity2.product_quantity.value = 99;
next = 1;
}

if(next == 0)
document.cart_quantity2.product_quantity.value = oldvalue + arg;
}
//-->

<!--
function update_qnt3(arg) {
var oldvalue = eval(document.cart_quantity3.product_quantity.value);
var next = 0;

if(oldvalue == 1 && arg == -1) {
document.cart_quantity3.product_quantity.value = 1;
next = 1;
}
if(oldvalue == 99 && arg == 1) {
document.cart_quantity3.product_quantity.value = 99;
next = 1;
}

if(next == 0)
document.cart_quantity3.product_quantity.value = oldvalue + arg;
}
//-->

<!--
function update_qnt4(arg) {
var oldvalue = eval(document.cart_quantity4.product_quantity.value);
var next = 0;

if(oldvalue == 1 && arg == -1) {
document.cart_quantity4.product_quantity.value = 1;
next = 1;
}
if(oldvalue == 99 && arg == 1) {
document.cart_quantity4.product_quantity.value = 99;
next = 1;
}

if(next == 0)
document.cart_quantity4.product_quantity.value = oldvalue + arg;
}
//-->

<!--
function update_qnt5(arg) {
var oldvalue = eval(document.cart_quantity5.product_quantity.value);
var next = 0;

if(oldvalue == 1 && arg == -1) {
document.cart_quantity5.product_quantity.value = 1;
next = 1;
}
if(oldvalue == 99 && arg == 1) {
document.cart_quantity5.product_quantity.value = 99;
next = 1;
}

if(next == 0)
document.cart_quantity5.product_quantity.value = oldvalue + arg;
}
//-->

<!--
function update_qnt6(arg) {
var oldvalue = eval(document.cart_quantity6.product_quantity.value);
var next = 0;

if(oldvalue == 1 && arg == -1) {
document.cart_quantity6.product_quantity.value = 1;
next = 1;
}
if(oldvalue == 99 && arg == 1) {
document.cart_quantity6.product_quantity.value = 99;
next = 1;
}

if(next == 0)
document.cart_quantity6.product_quantity.value = oldvalue + arg;
}
//-->
