var imgpath = "images/";

function showImage(imgName) {
  document.images["mainImg"].src = imgpath+imgName+".gif";

  var elmt = document.frmPayment.loanSelect;
  for (var i = 0; i < elmt.options.length; i++) {
    if (elmt.options[i].id == imgName) {
      elmt.selectedIndex = i;
      break;
    }
  }
}

function go(){
	parent.location=
	document.frmPayment.loanSelect.
	options[document.frmPayment.loanSelect.selectedIndex].value
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
