/* --------------------------------------------
   Javascript for Payment Toggle Box function 
   -------------------------------------------- */


<!--
function togglePaymentBox(id) {

	if(!document.getElementById) return;
	
	var box = document.getElementById(id);

	if(box.className == "box_payment_hidden") 
	
			 box.className = "box_payment_visible";
			 
	else box.className = "box_payment_hidden";
	
		}
		