var list = "A woman痴 place is on a horse|A woman's place is on her horse|Barking mad|Been there jumped that got the scars to prove it|Born to ride forced to work|Cheeky Monkey|Dizzy Bird|Dog Tired|Don稚 let horses frustrate you we have men for that|Farmer in Training|Fine Filly|Foxy Lady|Game Bird|Get a life get a horse|Gone Ferreting|Gone Fishing|Gone Riding|Gone Sailing|";
list = list+"Gone Shooting|Hacked off|Happiness is a big tractor and a girlfriend|Happiness is a horse and a rich daddy|Happiness is a horse and a rich husband|Happiness is a horse and a rich mum|Happiness is a horse and a young farmer|He said it's me or the horse we'll miss him|Head Gardener|High maintenance but worth it|Horse chick|I might as well do it coz I知 going to get the blame anyway|I'd rather be kissed by my horse|I'd rather be sailing|I'm not fat I'm in show condition|In Your Dreams|Like my horse I have great legs a fit body and occasionally need a good whipping|";
list = list+"Like my horse I知 difficult to get on but hard to stay off|Like my horse I知 high maintenance temperamental and can be difficult to mount|Little Miss Attitude|Little Miss Perfect|Little Tinker|Moody Mare|Mucky Pup|Nag Nag Nag|On Stud Duty|Pedigree Bitch|Real Girls Ride|Ride it like you stole it|Save a horse ride a cowboy|Save a horse ride a farmer|Saw it wanted it threw a tantrum and got it|Sticks and stones may break my bones but whips and spurs excite me|Stroppy Cow|Stroppy Mare|Talk to the hoof|The more I drink the better you look|The more men I meet the more I like my horse|Unpaid Groom|Unpaid stable hand|Wanted dangerously handsome guy must like horses and be extremely rich|";
list = list+"Wanted good looking single male with horsebox please send photo of horsebox|When I知 good I知 very good but when I知 bad I知 even better|Yummy Mummy";


function womenslogos()
{
  var cnt = 1;
  do
  {
    logo = items(list, cnt, "|");
    if (logo == "") break;
    document.write('<option value="'+logo+'">'+logo+'</option>');
    cnt++;
  } while (1==1);
}

function changelogo()
{
  var logotext = document.getElementById("logos").options[document.getElementById("logos").selectedIndex].text;
  document.getElementById("logo").value = logotext;
  document.getElementById("logooverlay").style.visibility = "hidden";
  document.getElementById("logoarea").innerHTML = logotext;
}

function agreed()
{
  if (document.getElementById("agree").checked)
  {
    return true;
  }
  return false;
}

function logospage()
{
  var col = 1;
  var cnt = 1;
  do
  {
    logo = items(list, cnt, "|");
    if (logo == "") break;
    if (col == 1) document.write('<tr><td valign="top">');
    if (col == 2) document.write('</td><td style="width : 10px;"></td><td valign="top">')
    document.write('<option value="'+logo+'">'+logo+'</option>');
    if (col == 2)
    {
      document.write('</td></tr>');
      document.write('<tr><td style="height : 10px;"></td></tr>');
      col = 1;
    } else
    {
      col = 2;
    }
    cnt++;
  } while (1==1);
  if (col == 1) document.write('</td></tr>');
}
