var COOKIENAME="enquirybasket";
function printselected() {
	temp = getCookie(COOKIENAME);
	temp2 = ""
	if (temp != null && temp != "") {
		var selected = temp.split('?');
		for (i=0;i<selected.length;i++) {
			if (i!=0) {
				temp2 += " , ";
			}
			temp2 += selected[i];
		}
	}
        if (temp2 == "") {
                temp2 = "No item was selected. Please click into product menu on the left hand side to choose your enquiry products.  After making your own selection, please click into View Enquiry Basket section to fill in your information for contacts.";
        }

	this.document.open();
        list = temp2;
        this.document.writeln(list);
	this.document.close();
}

