function isNew(year, month, date, event, norup){
   var maxage = 20;
   var imgsource = "/imgs/new.gif";
   if (norup == 1){
      imgsource = "/imgs/updated.gif";
   }
   
   var now = new Date();
   var compare = new Date(year, month-1,date);
   var expired = now.getTime()-compare.getTime();
   var expire2 = now - compare;
   var expdate = new Date(expire2);
   var minutes = 1000 * 60;
   var hours = minutes * 60;
   var days = hours * 24;
   var t = Date.parse(expdate);
   var age = t/days;
   //document.write("<p> It's been: " + age + " days");
   //document.write("<p>" + t);
   if (age > maxage) {
      document.writeln(event);
   } else {
   document.writeln("        	<table width=\"100%\" height=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
   document.writeln("            		<tr>");
   document.writeln("                  	<td>" + event + "</td>");
   document.writeln("                  	<td align=\"right\"><img src=\"" + imgsource + "\" align=\"middle\"></td>");
   document.writeln("                  </tr>");
   document.writeln("               </table>");
}

}


var d = new Date()
//document.write(d.getDate())
//document.write(".")
//document.write(d.getMonth() + 1)
//document.write(".")
//document.write(d.getFullYear())
//isNew(2008,7,30,"BCX V", 1)

function change(x){
   x.style.backgroundColor = "#cccccc";
   x.style.color = "#333333";
}

function changeout(x){
   x.style.backgroundColor = "";
   x.style.color = "";
}

function go(dir){
   document.location.href = dir + "/index.html";
}

function goarch(dir){
	document.location.href = dir + ".html";
}