
//The following script performs an action based on the day/time
//in the time zone specified. i.e. if you specify 08:00 to 17:00 PST
//the action would occur between 11:00 and 20:00 EST (East Coast).
//It relies upon the user to have the correct time and time zone
//setup on their PC.
 
var now = new Date()
 
//Set start and end to the appropriate date/time in the format shown
//Any time zone can be used, for Beaverton time use PST
// or PDT (during daylight savings time)

var start = new Date("January 26, 2007 19:00:00 PST")
var end   = new Date("January 28, 2007 13:00:00 PST")

if (now >= start && now <= end) 

 {document.write('<h4>Maintenance Notice</h4><p><strong>Some areas of the Careers site are temporarily down for maintenance.</strong><br />Please try your request again later if you have difficulties.<br /><a href="mailto:webmaster@tek.com"><small>Questions? Contact the webmaster</small></a><br /></p>');}

else

//If you want something to happen except between start and end,
//put it in place of the following "null".
  {null}