function onToggleDetail(ActualText, PlaceHolder)
{
// CreditScore = document.forms[0].ctl00$DefaultPageContent$CreditBox.value;

CreditScore = document.forms[0].ctl00_DefaultPageContent_CreditBox.value;

// CreditScore = document.form1..value;
Amount = document.forms[0].ctl00$DefaultPageContent$AmountBox.value;
Exotic = document.forms[0].ctl00$DefaultPageContent$ExoticBox.checked;

// text = "";
// for (i=0; i < 13; i++)
// {
// text = text + "\n" + i;
 // text = text + i + ": " + document.forms[0][i].id + "\n";
// text = text + i + ": " + document.forms[0][i].type + "\n";
// }

// alert ("Spot 7 " + document.forms[0].ctl00$DefaultPageContent$ExoticBox.checked);
// alert (CreditScore);

if (CreditScore > 740 && Amount > 10000 && Exotic)
{
  for (i=0; i < document.all.length; i++) 
  {
     if (document.all(i).tagName == "DIV") 
     {
        if (document.all(i).title == ActualText) 
        {
              document.all(i).style.display = ""; 
        }

        if (document.all(i).title == PlaceHolder)
        {
              document.all(i).style.display = "none"; 
        }
     }
   }
}
else
{
  for (i=0; i < document.all.length; i++) 
  {
     if (document.all(i).tagName == "DIV") 
     {
        if (document.all(i).title == ActualText) 
        {
              document.all(i).style.display = "none"; 
        }
        if (document.all(i).title == PlaceHolder)
        {
              document.all(i).style.display = ""; 
        }

     }
   }

}

   return;
}