function rndnumber(max) 
{
    randitem = Math.floor(Math.random() * max);
	return randitem;
}

function printitem(memberid) 
{ 
ItemHeader = new Array();
ItemHeader[0] = '<img src="/images/graphics/hiCupidPreDating.gif" width="160" height="30" border="0" style="margin-top: 30px;"/>';
ItemHeader[1] = '<img src="/images/graphics/hiCupidPreDating.gif" width="160" height="30" border="0" style="margin-top: 30px;"/>';
ItemHeader[2] = '<img src="/images/graphics/hiCupidPreDating.gif" width="160" height="30" border="0" style="margin-top: 30px;"/>';

ItemBody = new Array();
ItemBody[0] = 'I am writing to tell you of our success story with Pre-Dating. Jimmy and I met at a speed dating event at Jimmy Mac\'s Restaurant in Tampa on January 5, 2004.<br/><br/>As we began our six minutes, conversation seemed to come easily for us. When the bell rang, it seemed as if the time had flown. We laughed the entire time! When time ended, I wanted to continue our conversation and silently hoped we would be a match. I hoped he felt the same...';
ItemBody[1] = 'My husband Jim and I met at a speed dating event in Virginia Beach on May 20, 2003. I met and matched with three gentlemen that evening and went out with one before my date with Jim on Memorial Day.<br/><br/>After that date, we were inseparable. We were married on May 1 of this year (2005.)<br/><br/>Thank you for bringing us together...';
ItemBody[2] = 'I went to only one of your events last January in New Hope, PA and the guy I met there turned out to be my true soulmate! Now we are so happy and excited to be planning our future together.<br/><br/>We had a beautiful dream wedding and are always telling friends they have to try Pre-Dating since it (obviously) worked for us!';

Itemimage = new Array();
Itemimage[0] = '<img src="\/image\/pdTestimonial1.jpg" width="215" height="175" border="0" style="margin-bottom: 1.5em;"\/>';
Itemimage[1] = '<img src="\/image\/pdTestimonial2.jpg" width="215" height="175" border="0" style="margin-bottom: 1.5em;"\/>';
Itemimage[2] = '<img src="\/image\/pdTestimonial3.jpg" width="215" height="175" border="0" style="margin-bottom: 1.5em;"\/>';
 
   itemnum = rndnumber(ItemHeader.length);
   title = ItemHeader[itemnum];
   t_image = Itemimage[itemnum];
   msg = ItemBody[itemnum];
   msg ="<div class='borderBox'><b class='rounded'><b class='rounded1'><b></b></b><b class='rounded2'><b></b></b><b class='rounded3'></b><b class='rounded4'></b><b class='rounded5'></b></b><div class='roundedBg'><div align='center'>"+ t_image +"</div><p><em>''"+ msg +"''</em></p><div class='clear'></div></div><b class='rounded'><b class='rounded5'></b><b class='rounded4'></b><b class='rounded3'></b><b class='rounded2'><b></b></b><b class='rounded1'><b></b></b></b><div class='clear'></div></div>";
   document.write(msg);
}

