function openwebsite() {
	if (document.forms['calendarpurchase'])	   
		var pageurl = document.forms['calendarpurchase'].website.value;
		if ((pageurl.length != 0) && (pageurl.toLowerCase() != "http://"))
			var win = window.open(pageurl, '_blank');
}

function processlisting(trial) {
	if (document.forms['paypalpayment']) {		    
	    if (trial == 'overrule')  {
	        document.forms['paypalpayment'].overrule.value = 'yes';         
	    }
	    else {
	        document.forms['paypalpayment'].freetrial.value = trial;
	        document.forms['paypalpayment'].overrule.value = 'no'; 	              
	    }
        
		document.forms['paypalpayment'].submit();
	}
}
