function chkBoxsEnquiry(){
	var productIDs = new Array();
		
	if(document.tempForm.enquiryList.length == "undefined" || document.tempForm.enquiryList.length == null)
		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;
	}
		
	enquiryProduct(productIDs);
}