/* Currency Exchange Conversion */
 
 function SubmitCurrency( theForm )
 {
   amount       = theForm.Amount.value
   fromCurrency = theForm.From.options[theForm.From.selectedIndex].value
   toCurrency   = theForm.To.options[theForm.To.selectedIndex].value
   submitUrl    = 'http://www.xe.net/cgi-bin/ucc/convert?language=xe&To=' + 
                  toCurrency + '&Amount=' + amount + '&From=' + fromCurrency
  	  
   ResultsWindow = window.open ('', 'ResultsWindow', 'toolbar=0,location=0,'+
                                'directories=0,status=0,menubar=0,scrollbars=0'+
                                ',resizable=1,height=170,width=600')
 
   ResultsWindow.focus()
   ResultsWindow.location.href = submitUrl
      
   // Open a new window
   return false
  }
