   function showInfoForm() {
		window.open ("https://www.securetrading.com/newforms/infopack.php","st_info_form","status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=1,height=800,width=1000");
	}
	function showMerchantForm() {
		window.open ("https://www.securetrading.com/newforms/merchant.php?","st_merchant_form","status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=1,height=800,width=1000");
	}	
	function showPartnerForm() {
		window.open ("https://www.securetrading.com/newforms/partner.php","st_partner_form","status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=1,height=800,width=1000");
	}


	function showMerchantFormPartner(partnerId) {
		window.open ("https://www.securetrading.com/newforms/merchant.php?pid=" + partnerId,"st_merchant_form","status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=1,height=800,width=1000");
	}


function toggleContent(id,triggerElementId) {
    var element;
    var triggerElement;
    triggerElement = document.getElementById(triggerElementId);

    if(element = document.getElementById(id)) {
	if(element.style.display != "none") {
	    // hide it
	    element.style.display = "none";
	    triggerElement.className = "read-more-more-off";	    
	} else {
	    // show it
	    element.style.display = "block";
	    triggerElement.className = "read-more-less-off";
	}
    }
}
