﻿   function swap(s, id){
   if(s=='off'){  
   document.getElementById(id).style="";
   }else if(s=='on'){
   document.getElementById(id).style="background: rgb(255, 255, 255) url(http://www.google.com/coop/intl/en/images/google_custom_search_watermark.gif) no-repeat scroll left center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;";
   alert('background: rgb(255, 255, 255) url(http://www.google.com/coop/intl/en/images/google_custom_search_watermark.gif) no-repeat scroll left center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;');
   }
   }
   
   function habilitaDeposito(){
   document.depositos['deposito'].disabled=false;
   
   document.banking['banking'].disabled=true;
   document.servicash['servicash'].disabled=true;
   document.moneygram['moneygram'].disabled=true;
   document.paypal['paypal'].disabled=true;
   //document.paypalf['submit'].disabled=true;
   
   }
   
   function habilitaBanking(){
   document.banking['banking'].disabled=false;
      
   document.depositos['deposito'].disabled=true;
   document.servicash['servicash'].disabled=true;
   document.moneygram['moneygram'].disabled=true;
   document.paypal['paypal'].disabled=true;
   //document.paypalf['submit'].disabled=true;
   }
   
   function habilitaServiCash(){
   document.servicash['servicash'].disabled=false;
      
   document.depositos['deposito'].disabled=true;
   document.banking['banking'].disabled=true;
   document.moneygram['moneygram'].disabled=true;
   document.paypal['paypal'].disabled=true;
   //document.paypalf['submit'].disabled=true;
   }
   
   function habilitaMoneyGram(){
   document.moneygram['moneygram'].disabled=false;
   
   document.depositos['deposito'].disabled=true;
   document.banking['banking'].disabled=true;
   document.servicash['servicash'].disabled=true;
   document.paypal['paypal'].disabled=true;
   //document.paypalf['submit'].disabled=true;
   }
   
   function habilitaPaypal(){
   document.paypal['paypal'].disabled=false;
   //document.paypalf['submit'].disabled=false;
   
   document.depositos['deposito'].disabled=true;
   document.banking['banking'].disabled=true;
   document.servicash['servicash'].disabled=true;
   document.moneygram['moneygram'].disabled=true;
   }
