
var Statements = new Array(

'Try <a href="http://www.google.com/ig/directory?url=gwidgets.com/vip/widget-quotes.php?gid=73" target=_top>Cooking Tips</a>',
'Try <a href="http://www.google.com/ig/directory?url=gwidgets.com/vip/widget-quotes.php?gid=73" target=_top>Cooking Tips</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=104" target=_top>Underwater Photos</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=108" target=_top>Science and Space Photos</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=109" target=_top>Adventure Photos</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=100" target=_top>Sunrise and Sunset Photos</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=97" target=_top>Black and White photos</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=83" target=_top>Glenn Beck Quote of the Day</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=107" target=_top>Nature Photos</a>',
'Try <a href="http://www.google.com/ig/directory?url=http://gwidgets.com/widget/?gid=96" target=_top>Animal Photos</a>'

);

function GetStatement(outputtype)
{
if(++Number > Statements.length - 1) Number = 0;
if (outputtype==0)
document.write(Statements[Number])
else if (document.getElementById)
document.getElementById("ponder").innerHTML=Statements[Number];
}

function GetRandomNumber(lbound, ubound)
{
return (Math.floor(Math.random() * (ubound - lbound)) + lbound);
}

var Number = GetRandomNumber(0, Statements.length - 1);




GetStatement(0)

