// JavaScript Document

function selectAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
}

function copyrightDate(){
wriYr = new Date
var doYr = wriYr.getFullYear()
document.write("<B>&copy 1998 - " + doYr + "</B>")
}