function dblistit2(){

// document.write("There are currently no wolf-hybrid available for listing.<br /><br />");


var myString = new String

// ######### format is as follows: name |graphic Name| age | gender | rescued from | donation | other | 
// Sample -----> myString = myString + String('Dante|dante.jpg|5 Years Old|Male|---|500.00|Very Sweet|');
// ############## CREATE DB ENTRIES HERE BEGIN (Dont change anything above) ###############

myString = myString + String('Loving Animal needs Home |oct2009.jpg|Adult|Male||Not Specified|');
myString = myString + String('He is gray sable, 29 inches at the shoulder, and 78 lbs. I think he is probably half wolf, half sable shepherd. His conformation is NOTHING like a shepherd, though. He has a lovely disposition, loving and gentle, but hates to be alone.<br /><br />');
myString = myString + String('Inquiries should be directed to <a href="mailto:ncwolfrescue@yahoo.com'); 
myString = myString + String('?subject=An Inquiry about Gray Sable from web site"'); 
myString = myString + String('>ncwolfrescue@yahoo.com</a>||');  

// ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--

myString = myString + String('||');
var myArray = myString.split('|');

for (var i = 0; i <= myArray.length - 8; i = i + 8)  
  {
  document.write("<table border='1' cellspacing='0' cellpadding='6' width='525'>");
  document.write("<tr><td colspan='3' width='525' align='center'>");
  document.write("<span class='content' style='font-size: 130%;'><b> NAME: </b>" + myArray[i] + "</span>");
  document.write("</td></tr>");
  document.write("<tr><td rowspan='4' width='250' align='center'>");
  document.write("<a class='content' href='images/adoption_images/"+ myArray[i+1] + "' target='_blank'>");
  document.write("<img src='images/adoption_images/sm_" + myArray[i+1] + "' height='100' border='0'></a><br>");
  document.write("<b class='content'>Click Image to Enlarge</b>");
  document.write("</td>");
  document.write("<td width='138' valign='top' align='right'><b class='content'>Approx. Age:</b></td>");
  document.write("<td width='137' valign='top'><span class='content'>"); 
  document.write(myArray[i+2]);
  document.write("</span>&nbsp;</td>");
  document.write("</tr>");
  document.write("<tr>");
  document.write("<td valign='top' align='right'><b class='content'>Gender:</b></td>");
  document.write("<td valign='top'><span class='content'>"); 
  document.write(myArray[i+3]);
  document.write("</span>&nbsp;</td>");
  document.write("</tr>");
  document.write("<tr>");
  document.write("<td valign='top' align='right'><b class='content'>&nbsp;</b></td>");
  document.write("<td valign='top'><span class='content'>"); 
  document.write(myArray[i+4]);
  document.write("</span>&nbsp;</td>");
  document.write("</tr>");
  document.write("<tr>");
  document.write("<td valign='top' align='right'><b class='content'>Donation:</b></td>");
  document.write("<td valign='top'><span class='content'> $"); 
  document.write(myArray[i+5]);
  document.write("</span>&nbsp;</td>");
  document.write("</tr>");
  document.write("<tr><td colspan='3'><span class='content'>");
  document.write("<b>Other Info: </b>");
  document.write(myArray[i+6]);
  if (myArray[i+7] == "x") {
    document.write(" Serious Inquiries should be submitted using the ");
    document.write("<a href='inquiry.asp?wolf=" + myArray[i] + "' style='color:#FFFF99;'>");
    document.write("attached form</a>.");
    }
  document.write("</span><br></td></tr>");
  document.write("</table>");
  document.write("<br><br>");
  } 
  // End For Loop



} 
// End Function
