function onToggleDetail(ActualText, PlaceHolder)
{
  // document.write(document.referrer); 
  
  
  // alert
  CreditScore = document.forms[0].ctl00_CreditBox.value;
  Amount = document.forms[0].ctl00_AmountBox.value;



if (CreditScore > 7000 && Amount > 10000)
{
  
  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;
}