	function hidediv(id) {
	//alert("id is " + id);
	//safe function to hide an element with a specified id
		if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
		}
		else {
			if (document.layers) { // Netscape 4
			document.id.display = 'none';
			}
			else { // IE 4
			document.all.id.style.display = 'none';
			}
		}
	}
	
	function showdiv(id) {
	//safe function to show an element with a specified id
	//alert("id is " + id); 
		if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = '';
		}
		else {
			if (document.layers) { // Netscape 4
			document.id.display = '';
			}
			else { // IE 4
			document.all.id.style.display = '';
			}
		}
		//document.basket0.DifferentBill.value = 'Yes';
		}
		
		
		//<![CDATA[
	var tl_loc0=(window.location.protocol == "https:")? "https://secure.comodo.net/trustlogo/javascript/trustlogo.js" :
	"http://www.trustlogo.com/trustlogo/javascript/trustlogo.js";
	document.writeln('<scr' + 'ipt language="JavaScript" src="'+tl_loc0+'" type="text\/javascript">' + '<\/scr' + 'ipt>');
	//]]>
