// This script was supplied free by Hypergurl
// http://www.hypergurl.com
<!--
    // JavaScript to interpolate random images into a page.
    var ic = 3;     // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] = "../random/pic1.gif";
xoxo[1] = "../random/pic2.gif";
xoxo[2] = "../random/pic3.gif";

function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRandom(ic);
// -->

function my_open_window(i){
err=window.open('news_edu.cgi?'+i,'news'+i,'height=500,width=500,scrollbars=yes,resizable=yes');
}

function myopen_window(i){
err=window.open('../cgi/news_edu.cgi?'+i,'news'+i,'height=500,width=500,scrollbars=yes,resizable=yes');
}
