




/*
     FILE ARCHIVED ON 4:45:56 Apr 4, 2005 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 7:12:30 Jun 25, 2011.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
// JavaScript Document
function pDate() {
var now = new Date();
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

document.write(dayNames[now.getDay()] + ", " + monNames[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear());
}

function pDate2() {
var now = new Date();
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

document.write(dayNames[now.getDay()] + "<br />" + monNames[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear());
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  		window.open(theURL,winName,features);
  		window.blur;
}

<!-- Begin
closetime = 0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds

function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
preview = window.open(URL, "preview", windowprops);
if (closetime) setTimeout("preview.close();", closetime*1000);
}

function doPopup(thisurl) {
url = thisurl;
width = 720;  // width of window in pixels
height = 325; // height of window in pixels
delay = 5;    // time in seconds before popup opens
timer = setTimeout("Start(url, width, height)", delay*1000);
}
//  End -->

