
var imageFilePath = "images/products/";


function jdcart_displayItem(name, description, price, imagefilename, qty) {
	document.write("<div class='productContainer'>");
	document.write("	<div class='productImage'>");
	document.write("			<a href='" + imageFilePath + imagefilename + ".jpg' rel='lightbox[gallery]'>");
	document.write("		<img src='" + imageFilePath + imagefilename + "_thumb.jpg' border='0' />");
	document.write("		</a>");
	document.write("	</div>");
	document.write("	<div class='productPriceContainer'>");
	document.write("		<div class='productPrice'>$" + price + "</div>");
	document.write("		<div class='productAddtoCart'>");
	document.write("			<a id='jdcart_addtocart' href='shopping_cart.php?addItemName=" + name + "&addItemImagefilename=" + imagefilename + "&addItemPrice=" + price + "&addItemQty=" + qty + "'>");
	document.write("				<img src='jdcart/images/cart_insert.png' /><br/>Add to Cart");
	document.write("			</a>");
	document.write("		</div>");
	document.write("	</div>");
	document.write("	<div class='productName'><br/>" + name + "</div>");
	document.write("	<div class='productDescription'>" + description + "</div>");
	document.write("</div>");
}


function jdcart_displayItemQty(name, description, price, imagefilename) {
	document.write("<div class='productContainer' style='width:700px'>");
	document.write("	<div class='productImage'>");
	document.write("			<a href='" + imageFilePath + imagefilename + ".jpg' rel='lightbox[gallery]'>");
	document.write("		<img src='" + imageFilePath + imagefilename + "_thumb.jpg' border='0' />");
	document.write("		</a>");
	document.write("	</div>");
	document.write("	<div class='productPriceContainer'>");
	document.write("		<div class='productPrice' style='text-align:right;'>$" + price + "</div>");
	document.write("		<div class='productAddtoCart' style='text-align:right;'>");
	document.write("			Qty:&nbsp;<input type='text' id='"+imagefilename+"_qty' class='productQty' value='1' style='-moz-border-radius: 0px; -webkit-border-radius: 0px; width:30px; padding:1px; float:right;' />");
	document.write("			<a id='jdcart_addtocart' style='clear:both; display:block;' href='javascript: jdcart_addToCart(\""+name+"\",\""+description+"\",\""+price+"\",\""+imagefilename+"\")' >  ");
	document.write("				<img src='jdcart/images/cart_insert.png' style='vertical-align:middle;' />&nbsp;<u>Add to Cart</u>");
	document.write("			</a>");
	document.write("		</div>");
	document.write("	</div>");
	document.write("	<div class='productName'><br/>" + name + "</div>");
	document.write("	<div class='productDescription'>" + description + "</div>");
	document.write("</div>");
}


function jdcart_addToCart(name, description, price, imagefilename) {
	qtyId = imagefilename + "_qty";
	qty = document.getElementById(qtyId).value;
	window.location = "shopping_cart.php?addItemName=" + name + "&addItemImagefilename=" + imagefilename + "&addItemPrice=" + price + "&addItemQty=" + qty;
}
