var msg = "This page requires version 4 or later of\n Netscape Navigator or Internet Explorer"
var dyn = (document.layers || document.all) ? true : alert(msg);
var nav = (document.layers) ? true : false;
var iex = (document.all) ? true : false;
var lft = 5; // (window.screen.width/2);
var pos = 0;   // initial top position
var stp = 5;    // step increment size
var spd = 150;   // speed of increment
var upr = -390;  // upper limiter
var lwr = 100;   // lower limiter
var tim;         // timer variable

function scroll() 
{
//window.defaultStatus=pos;
if (pos <= upr) pos=10;
if(pos > upr) pos -= stp;
do_scroll(pos);  
tim = setTimeout("scroll()", spd);
}

function do_scroll(pos) 
{
if(iex) document.all.divTxt.style.top = pos;
if(nav) document.divTxt.top = pos;
}

function no_scroll() 
{
clearTimeout(tim);
}

var divTop_content="";

//var divTxt_content = ('<font class="n10"><P><P><BR><BR><b>Hanaan<P><br>Dear Abby,</b> I have a man I never could trust.  He cheats so much on me I\'m not even sure this baby I\'m carrying is h i.<P><br>Dear Abby, I am a twenty-three year old liberated woman who has been on the pill for two years.  It\'s getting expensive and I think my boyfriend should share half the cost, but I don\'t know him well enough to discuss money with him.<P>Dear Abby, I suspected that my husband had been fooling around, and when I confronted him with the evidence he denied everything and said it would never happen again.<P>Dear Abby, Our son writes that he is taking Judo.  Why would a boy who was raised in a good Christian home turn against his own?<P>Dear Abby, I joined the Navy to see the world.  I\'ve seen it.  Now how do I get out?<P>Dear Abby, I was married to Bill for three months and I didn\'t know he drank until one night he came home sober.<P>Dear Abby, My forty-year-old son has been paying a psychiatrist $50 an hour every week for two-and-a-half years.  He must be crazy.<P>Dear Abby, I have always wanted to have my family history traced, but I can\'t afford to spend a lot of money to do it.  Any suggestions?  Signed, Sam Dear Sam, Yes.  Run for public office.<P><BR><P><BR><P><BR><P></font>');  

var divTxt_content = ('<font class="scroller"><P><P><BR><BR><B>Hanaan</B><P>Welcome to Hanaan.<P>A taste of Modern India.</font><P><P><BR><BR>');  

if(iex) document.write('<DIV ID="divTxt" STYLE="position:absolute; top:0; left:'+lft+'; width:200;  font-size:10pt; background-color:black; z-index:1">'+divTxt_content+'</DIV>');

if(nav) document.write('<LAYER ID="divTxt" position="absolute" top="10" left="'+lft+'" width="200" font-family="verdana" font-size="10pt" bgcolor="black" z-index="1">'+divTxt_content+'</LAYER>');
