function setInquiry(productID) {
	var cartContent;
	var shoppingCart = new Cookie(document, "ProductInquiry", 1);
	var itemFound, itemCount, tempContent;
	if(!shoppingCart.load()||!shoppingCart.productID) {
		shoppingCart.productID = productID;
		msg = "Item \"" + productID + "\" has been added to your inquiry list,\ndo you want to send inquiry now?\n\nClick OK to go to the contact form now\nor Click Cancel to send later";
		shoppingCart.store();
		if (confirm(msg)) document.location="contactus.php";
	} else {
		tempContent=shoppingCart.productID.replace(productID, "");
		tempContent=tempContent.replace(/^\|\|/, "");
		tempContent=tempContent.replace(/\|\|$/, "");
		tempContent=tempContent.replace(/\|\|\|\|/, "||");
		if (tempContent==shoppingCart.productID) {
			shoppingCart.productID += "||" + productID;
			msg = "Product \"" + productID + "\" has been added to your inquiry list,\ndo you want to send inquiry now?\n\nClick OK to go to the contact form now\nor Click Cancel to send later";
			shoppingCart.store();
			if (confirm(msg)) document.location="contactus.php";
		} else {
			shoppingCart.productID=tempContent;
			msg = "Product \"" + productID + "\" has been removed from your inquiry list.";
			shoppingCart.store();
			alert(msg);
		}			
	}
}

function setInquiry_c(productID) {
	var cartContent;
	var shoppingCart = new Cookie(document, "ProductInquiry", 1);
	var itemFound, itemCount, tempContent;
	if(!shoppingCart.load()||!shoppingCart.productID) {
		shoppingCart.productID = productID;
		msg = "產品 \"" + productID + "\" 經已加入了您的產品查詢清單，\n您要現在就發出查詢的要求嗎？\n\n請按現在「確認」連結到聯絡我們頁\n或按「取消」延遲送出。";
		shoppingCart.store();
		if (confirm(msg)) document.location="contactus.php?lang=chn";
	} else {
		tempContent=shoppingCart.productID.replace(productID, "");
		tempContent=tempContent.replace(/^\|\|/, "");
		tempContent=tempContent.replace(/\|\|$/, "");
		tempContent=tempContent.replace(/\|\|\|\|/, "||");
		if (tempContent==shoppingCart.productID) {
			shoppingCart.productID += "||" + productID;
			msg = "產品 \"" + productID + "\" 經已加入了您的產品查詢清單，\n您要現在就發出查詢的要求嗎？\n\n請按現在「確認」連結到聯絡我們頁\n或按「取消」延遲送出。";
			shoppingCart.store();
			if (confirm(msg)) document.location="contactus.php?lang=chn";
		} else {
			shoppingCart.productID=tempContent;
			msg = "產品 \"" + productID + "\" 經已從您的產品查詢清單中刪除。";
			shoppingCart.store();
			alert(msg);
		}			
	}
}

function displayInquiry() {
	var cartContent;
	var shoppingCart = new Cookie(document, "ProductInquiry", 1);
	var itemFound, itemCount, tempContent;
	if(shoppingCart.load()&&shoppingCart.productID) {
		tempContent=shoppingCart.productID.replace(/\|\|/g, "\n");
		document.forms[0].Comments.value="I would like to inquire information of the following item(s):\n\n" + tempContent + "\n";
	}
}

function displayInquiry_c() {
	var cartContent;
	var shoppingCart = new Cookie(document, "ProductInquiry", 1);
	var itemFound, itemCount, tempContent;
	if(shoppingCart.load()&&shoppingCart.productID) {
		tempContent=shoppingCart.productID.replace(/\|\|/g, "\n");
		document.forms[0].Comments.value="我想索取以下產品的有關資料：\n\n" + tempContent + "\n";
	}
}

function clearInquiry() {
	var shoppingCart = new Cookie(document, "ProductInquiry", 1);
	shoppingCart.load();
	shoppingCart.productID="";
	shoppingCart.store();
	document.forms[0].reset();
}