function RollOver(MenuNum, ImagePath) {
	document.getElementById("Left" + MenuNum).src = ImagePath + "/NavLeftRO.jpg"
	document.getElementById("Right" + MenuNum).src = ImagePath + "/NavRightRO.jpg"
}

function RollOut(MenuNum, ImagePath) {
	document.getElementById("Left" + MenuNum).src = ImagePath + "/NavLeft.jpg"
	document.getElementById("Right" + MenuNum).src = ImagePath + "/NavRight.jpg"
}

var BANK_NAME = "BankMortgageSolutions.com";
function external_disclaimer(goHere){
  message  = BANK_NAME + " has no control over information at any site hyperlinked\n";
  message += "to from this Site. " + BANK_NAME + " makes no representation concerning\n";
  message += "and is not responsible for the quality, content, nature, or reliability\n";
  message += "of any hyperlinked site and is providing this hyperlink to you only as a\n";
  message += "convenience. The inclusion of any hyperlink does not imply any endorsement,\n";
  message += "investigation, verification or monitoring by " + BANK_NAME + " of any\n";
  message += "information in any hyperlinked site. In no event shall " + BANK_NAME+ "\n";
  message += "be responsible for your use of a hyperlinked site.";

  if (confirm(message)){
	window.open(goHere, '_blank');
	}
}