//this Breaks out of Frames
if (window != top) top.location.href = location.href;
else
if (self.location.href != top.location.href) {
top.location.href = self.location.href;
}


//this puts cursor in the searchbox
function sf(){document.searchform.searchtext.focus();}



//Netscape resize fix - reloads the window if Nav4 resized
function MM_reloadPage(init) {  
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

var mydate=new Date()
var year=mydate.getYear()

var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
var dayh=mydate.getHours()
var daymin=mydate.getMinutes()
if (daymin < 10)
	daymin = "0"+daymin

if (daym<10)
	daym=""+daym

var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July", "August","September","October","November","December")
//document.write(""+montharray[month]+" "+daym+" "+year+"")

