function chkBoxsResult(typeString){
	var productIDs = new Array();
		
	if(document.tempForm.enquiryList.length == null || document.tempForm.enquiryList.length == "undefined")
		productIDs[document.tempForm.enquiryList.value] = document.tempForm.enquiryList.checked;
	else {
		for(i=0;i<document.tempForm.enquiryList.length;i++)
			productIDs[document.tempForm.enquiryList[i].value] = document.tempForm.enquiryList[i].checked;
	}
	
	if(typeString=="enquiry")
		enquiryProduct(productIDs);
	else
		shoppingCart(productIDs);
}

function addIntoList(typeString, productID){
	var pageName = "";
	
	if(typeString=="enquiry")
		pageName = "enquiryList.php";
	else
		pageName = "shoppingCartList.php";
		
	url = pageName + "?choosedID=" + productID;
	
	properties = "width=350,height=180,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes";
	enquiryListWindow = window.open(url, "enquiry_list" , properties, "false");
	
	enquiryListWindow.focus();
}
