<!--    

   function alertContentsWish() {
			if (http_request.readyState == 4) {
				if (http_request.status == 200) {
					result = parseInt(http_request.responseText);
					document.getElementById('wishmsg'+mesgnum).innerHTML = '<p>'+result+ ' items have been added to your Wish List. <a href="wishlist.php">Click here to view items in your Wish List.</a></p>';
				}
				else {
					alert('There was a problem with the request.');
				}
			}
		}
 
		function getWish(obj,num) {
			id = obj.id.value;
			range = obj.range.value;
			type = obj.type.value;
			code = obj.code.value;
			price = obj.price.value;
			desc = obj.desc.value;
			quantity = obj.quantity.value;
			delivery = obj.delivery.value;
			var poststr = "id=" + encodeURI( id ) + "&range=" + encodeURI( range ) + "&type=" + encodeURI( type ) + "&code=" + encodeURI( code ) + "&price=" + encodeURI( price ) + "&desc=" + encodeURI( desc ) + "&quantity=" + encodeURI( quantity ) + "&delivery=" + encodeURI( delivery );
			makePOSTRequest('post_wish.php', poststr, 'wish', num);
		}
   
// -->

