
	function newWindow(URLname,WINname, WINattr)
	{
		logWindow = window.open(URLname, WINname, WINattr);
		logWindow.focus();
	}
	
	function jumplist(Section, Type, it) {
		if ( it.options[it.selectedIndex].value != "" ) {
	  	var ID = new String(it.options[it.selectedIndex].value);
			var dest = "index.cfm?do=";
			if (Section != "")
	  		var dest = dest + Section + "&";
	  	dest = dest + Type + "=" + ID;
	  	rpage(dest);
		}
		else
			rpage("index.cfm?do=main");
	} // end function

	function rpage(rlink)
	{
		location.replace(rlink);
	}

  function CurrencyPopup(QueryString)
  {
    CurrencyWindow = window.open ('', 'CurrencyWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,height=170,width=600')
    CurrencyWindow.focus()
    CurrencyWindow.location.href = 'http://www.xe.com/ecc/input.cgi?Template=sw&'+QueryString
  }


