//Modified by Coffeecup Software
//produces a randomly generated graphic to use as ad or cool effect
function RandomNumber()
{
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;
}
function RandomGraphics()
{
  var x = RandomNumber();

   if (x > .75)
{
document.write('<form name="form">')
document.write('<img src="recomemded-by02.gif" border="0">');
document.write('<br>');
document.write('<input type="text" name="userid">');
document.write('<br>');
document.write('<input type="button" onClick="Gotolink();" value="Go Visit!" />');
document.write('</form>'); 
return;
}


 if (x > .50)
{
document.write('<form name="form">')
document.write('<img src="recomemded-by03.gif" border="0">');
document.write('<br>');
document.write('<input type="text" name="userid">');
document.write('<br>');
document.write('<input type="button" onClick="Gotolink();" value="Go Visit!" />');
document.write('</form>'); 
return;
}


if (x > .25)
{
document.write('<form name="form">')
document.write('<img src="recomemded-by04.gif" border="0">');
document.write('<br>');
document.write('<input type="text" name="userid">');
document.write('<br>');
document.write('<input type="button" onClick="Gotolink();" value="Go Visit!" />');
document.write('</form>'); 
return;
}

  if (x > 0)
{
document.write('<form name="form">')
document.write('<img src="recomemded-by07.gif" border="0">');
document.write('<br>');
document.write('<input type="text" name="userid">');
document.write('<br>');
document.write('<input type="button" onClick="Gotolink();" value="Go Visit!" />');
document.write('</form>'); 
return;
}

}
RandomGraphics();
//End Script