<!--
  function initArray() {
	this.length = initArray.arguments.length
	for (var i = 0; i < this.length; i++)
		this[i+1] = initArray.arguments[i]
	}
// tip titles
var tt = new initArray(
"&nbsp;When home alone...",
"&nbsp;When Playing Away From Home...&nbsp;",
"&nbsp;When Playing Away From Home...&nbsp;",
"&nbsp;When Playing Away From Home...&nbsp;",
"&nbsp;When Playing Away From Home...&nbsp;",
"&nbsp;When Escaping Abduction...&nbsp;",
"&nbsp;When Escaping Abduction...&nbsp;",
"&nbsp;When Escaping Abduction...&nbsp;",
"&nbsp;When Escaping Abduction...&nbsp;",
"&nbsp;When using 911&nbsp;",
"&nbsp;When in a Public Place&nbsp;"
);

//tip content
var tip = new initArray(
"Never tell a caller you're home alone.",
"Get away, right away! (Use anything you can to help you get away.)",
"Run away from people who make you nervous.",
"Adults should never ask kids for help (directions, finding a lost pet, etc.)",
"Use a family code word.",
"Throw something out of the car.",
"Disable the car by wrecking the ignition switch or pulling out wires.",
"In the trunk: disable the brake/tail lights.",
"When stopped, push on the accelerator to bump the car ahead.",
"After saying &quot;Help, I've been kidnapped,&quot; quickly put down the phone - Don't Hang It Up!",
"Find someone who will help you (strangers are now your rescuers!)"
);

//add this to tip title
t = "Tips for kids to Avoid Abduction";
l = "<A HREF="+"'http://www.escapeschool.net/abduction/'"+" target=" + "'nonsfn'>"+"SCI Escape School</A> by Bob Stuber"
//get random number
today=new Date();
jran=today.getTime();
var number = 11;
var rand_num="";
ia=9301;
ic=49297;
im=233280;
jran = (jran*ia+ic) % im;
rand_num = Math.ceil( (jran/(im*1.0)) *number);

//write the tip
document.write ("<TABLE WIDTH=" + "'390' CELLPADDING=" + "'3' CELLSPACING=" + "'0' BORDER=" + "'1' BORDERCOLOR=" + "'Brown' ALIGN=" + "'CENTER'><TR><TD ALIGN=" + "'CENTER' BGCOLOR=" + "'Brown'><SPAN CLASS='tiptitle'>" + t + "</SPAN></TD></TR><TR><TD CLASS=" + "'tiptext'>" + "<SPAN CLASS=" + "'tipcaption'>" + tt[rand_num] + "</SPAN>" + "<BR>" + tip[rand_num] + "<BR><BR>" + l + "</TD></TR></TABLE>");
<!--end-->