// JavaScript Document
function showWeight()
{
var Product = document.NML_Order.myProduct.value;
var Quantity = document.NML_Order.myQuantity.value;
var Format = document.NML_Order.myFormat.value;
var shipWeight = document.NML_Order.shipWeight.value;
var product_wt;
var xValue = document.NML_Order.xValue.value;
var subQuantity = document.NML_Order.myQuantity.value;
var mailQuantity = document.NML_Order.mailQuantity.value;
var auxQuantity = 0;
var weight;

if(mailQuantity){
	Quantity = subQuantity - mailQuantity;
}

if(Product == "Standard Postcard 4.25 x 6") { 
	product_wt = Quantity * 0.011526;	act_weight = Quantity * 0.01;
}
if(Product == "Jumbo Postcard 5.5 x 8.5") { 
	product_wt = Quantity * 0.019586;	act_weight = Quantity * 0.018886;
}
if(Product == "Super Jumbo Postcard 6 x 11.5") { 
	product_wt = Quantity * 0.029453;	act_weight = Quantity * 0.027058;
}
if(Product == "Rack Card 4 x 9") { 
	product_wt = Quantity * 0.015899;	act_weight = Quantity * 0.01536;
}
if(Product == "Flyer") { 
	if (Format == "4/0 on 110# Cover Stock" || Format == "4/1 on 110# Cover Stock" || Format == "4/4 on 110# Cover Stock") {
	product_wt = Quantity * 0.03265985;	act_weight = Quantity * 0.03265985;
	}
	if (Format == "4/0 on 80# Gloss Text" || Format == "4/1 on 80# Gloss Text") {
	product_wt = Quantity * 0.0173217;	act_weight = Quantity * 0.01574;
	}
	if (Format == "4/4 on 100# Gloss Text") {
	product_wt = Quantity * 0.020047125;	act_weight = Quantity * 0.019684;
	}
}
if(Product == "Four Page Brochure 11 x 17") { 
	if (Format == "4/0 on 110# Cover Stock" || Format == "4/1 on 110# Cover Stock" || Format == "4/4 on 110# Cover Stock") {
	product_wt = Quantity * 0.0798346;	act_weight = Quantity * 0.0798346;
	}
	if (Format == "4/0 on 100# Gloss Text" || Format == "4/1 on 100# Gloss Text" || Format == "4/4 on 100# Gloss Text") {
	product_wt = Quantity * 0.039368;	act_weight = Quantity * 0.039368;
	}
}
if(Product == "Six Page Brochure") { 
	if (Format == "4/1 on 110# Cover Stock" || Format == "4/4 on 110# Cover Stock") {
	product_wt = Quantity * 0.09797955;	act_weight = Quantity * 0.09797955;
	}
	if (Format == "4/1 on 100# Gloss Text" || Format == "4/4 on 100# Gloss Text") {
	product_wt = Quantity * 0.060141375;	act_weight = Quantity * 0.059052;
	}
}
if(Product == "Business Card 2 x 3.5") { 
	product_wt = Quantity * 0.003288461;	act_weight = Quantity * 0.00298861;
}
if(Product == "Sticker 2 x 3.5") { 
	product_wt = Quantity * 0.003288461;	act_weight = Quantity * 0.00298861;
}
if(product_wt < 0) {
product_wt = 0; 
}
if(product_wt > 150) {
yValue = product_wt / 150 * 1;
xValue = yValue.toFixed(2);
} else {
xValue = 1 * 1;
}
if(xValue <= 0) { xValue = 1 * 1; }
document.getElementById('xValue').value = xValue * 1; 
document.getElementById('shipWeight').value = product_wt.toFixed(2); 
}
