// pops up the add to cart window.  The ID is the unique ID for the item, the orderType is a numeric indicating whether this is a shipped / regular order (1), online (2), or reseller (3)
function addToCart(ID, orderType) {

	window.open('addtocart.asp?ID=' + ID + '&ordertype=' + orderType,'','status=yes,width=400,height=230'); 

}
