function addToFavorites(URL,Title){
  if (window.external){
   window.external.AddFavorite(URL,Title)
  }
  else{ 
   alert("Sorry! Your browser doesn't support this function.");
  }
 }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function dispSearch(ID)
{
	document.getElementById('layCreditCards').style.display='none';
	document.getElementById('layLoans').style.display='none';
	document.getElementById('laySavingsAccounts').style.display='none';
	document.getElementById('layCurrentAccounts').style.display='none';


	if (ID == 'layCreditCards')
		{
			document.getElementById('layCreditCards').style.display='block';
		}
	if (ID == 'layLoans')
		{
			document.getElementById('layLoans').style.display='block';
		}
	if (ID == 'laySavingsAccounts')
		{
			document.getElementById('laySavingsAccounts').style.display='block';
		}
	if (ID == 'layCurrentAccounts')
		{
			document.getElementById('layCurrentAccounts').style.display='block';
		}
}