



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('minmin36',
               'I want to study English.Please help me!',
               'http://oh-hello.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/26/spod.5851.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('Qess',
               'I\&#039;m looking for friends to have fun with, go out with, talk with, karaoke with, generally just having fun :-).',
               'http://oh-hello.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/07/15/spod.6883.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Asasello',
               'One thing I would like to mention: I\&#039;m well educated and have a large range of interests\u3002',
               'http://oh-hello.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/02/18/spod.7333.jpg',
               120, 120);



