//**************************************
// Redirect.js
// Programmed By Sean Miniclier
// October 13, 2002
//**************************************
function redirect(linkhref)
{
   var LinkWin = open("link_disclaimer.html", "Window1");
   LinkWin.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">");
   LinkWin.document.write("<html><head><title>Untitled</title><link href=\"CSS/KACO.css\" rel=\"stylesheet\" type=\"text/css\"></head>");
   LinkWin.document.write("<body>");
   LinkWin.document.write("<div style=\"text-align:center\">");
   LinkWin.document.write("<div class=\"standard\" style=\"font:20px;\"><b>K A C O</b></div>");
   LinkWin.document.write("<img src=\"images/kacosurfer.gif\"><br>");
   LinkWin.document.write("<div class=\"smallText\">");
   LinkWin.document.write("Outside Resources One Moment Please…<p>You are about to access<br></div>");
   LinkWin.document.write("<div class=\"largeText\">");
   LinkWin.document.write("<a href=\"" + linkhref + "\">" + linkhref + "</a><p>");
   LinkWin.document.write("</div><div style=\"width:300px;\" class=\"smallText\">");
   LinkWin.document.write("You are now leaving the KACO Website. You have chosen a resource outside the KACO site. Links to ");
   LinkWin.document.write("resources will hopefully be helpful, but remember, KACO cannot vouch for their content, and takes ");
   LinkWin.document.write("no responsibility for, and exercises no control over, the organizations, views, accuracy, copyright ");
   LinkWin.document.write("or trademark compliance, privacy policy, or legality of the material(s).</div><p>");
   LinkWin.document.write("<div style=\"color:red; font:bold\" class=\"midNote\">Parents Remember to always<br>");
   LinkWin.document.write("PREVIEW the content of LINKS<br>before allowing your child to access.</div><p>");
   LinkWin.document.write("<div class=\"smallText\">You will be taken to this page in 10 seconds or, click on the above link ");
   LinkWin.document.write("for direct access.<p>Thanks for visiting the<br>KACO, Kids Against Crime Online Website.</div></body></html>");
   LinkWin.setTimeout("location=\'"+linkhref+"\'",10000);
}


