/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function swapTranslator(){

    fromChoice=document.frm.from.value;
    toChoice=document.frm.to.value;
    document.frm.from.value=toChoice;
    document.frm.to.value=fromChoice;
}
