function onToggleDetail2(ActualText, PlaceHolder)
{
Amount = document.forms[0].ctl00$AlternateQuestionsPlaceHolder$AmountBox.value;
CreditScore = document.forms[0].ctl00$AlternateQuestionsPlaceHolder$CreditBox.value;



if (CreditScore > 700 && Amount > 10000)
{

  for (i=0; i < document.forms[0].all.length; i++) 
  {
     if (document.forms[0].all(i).tagName == "DIV") 
     {
        if (document.forms[0].all(i).title == ActualText) 
        {
              document.forms[0].all(i).style.display = ""; 
        }

        if (document.forms[0].all(i).title == PlaceHolder)
        {
              document.forms[0].all(i).style.display = "none"; 
        }
     }
   }
}
else
{

  for (i=0; i < document.forms[0].all.length; i++) 
  {
     if (document.forms[0].all(i).tagName == "DIV") 
     {
        if (document.forms[0].all(i).title == ActualText) 
        {
              document.forms[0].all(i).style.display = "none"; 
        }
        if (document.forms[0].all(i).title == PlaceHolder)
        {
              document.forms[0].all(i).style.display = ""; 
        }

     }
   }

}

   return;
}