<!--
	function hiddenaddress( id, server, domain, text ) {
		text = id + "@" + server + "." + domain
		document.write('<a href="' + 'mailto:' + id + '@' + server + '.' + domain + '">' + text + '</a>');
	}
	
	function ShowDiv( DivName ) {
		if( !document.getElementById )  return
		which = document.getElementById( DivName );
		which.style.display="";
		PaymentMethod = DivName;
	}

	function HideDiv( DivName ) {
		if ( !document.getElementById )  return	
		which = document.getElementById( DivName );
		which.style.display="none";
	}
-->