<!--
function MM_goToURL() { 
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function netscapeCssFix() { 
  if (document.x.netscapeCssFix.initWindowWidth != window.innerWidth || document.x.netscapeCssFix.initWindowHeight != window.innerHeight) {
    document.location = document.location;
  }
}
function netscapeCssFixCheckIn() {
  if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
    if (typeof document.x == 'undefined'){
      document.x = new Object;
    }
    if (typeof document.x.scaleFont == 'undefined') {
      document.x.netscapeCssFix = new Object;
      document.x.netscapeCssFix.initWindowWidth = window.innerWidth;
      document.x.netscapeCssFix.initWindowHeight = window.innerHeight;
    }
    window.onresize = netscapeCssFix;
  }
}
netscapeCssFixCheckIn()

function doTheClock() {
   window.setTimeout( "doTheClock()", 1000 );
   t = new Date();
   if(document.all || document.getElementById){
      self.status = t.toString();
   }else{   
      self.status = t.toString();
   }
}

//doTheClock()

// Create new date object

var RightNow;
RightNow = new Date();

// Call this function to return the current date 

function date(){
		var Month;
		var Date;
		var Year;

		Month = RightNow.getMonth();
		Date = RightNow.getDate();
		Year = RightNow.getFullYear();

		Month = Month + 1;

		if(Month < 10){
			Month = "0" + Month;
		}

		if(Date < 10){
			Date = "0" + Date;
		}

		Year = Year - 2000;

		if(Year < 10){
			Year = "0" + Year;
		}

document.write(Month + "." + Date + "." + Year);
}
function openAwindow( pageToLoad, winName, width, height, center) {
  xposition=0; yposition=0;
  if ((parseInt(navigator.appVersion) >= 4 ) && (center)) {
    xposition = (screen.width - width) / 2;
    yposition = (screen.height - height) / 2;
  }
  args = "width=" + width + "," 
    + "height=" + height + "," 
    + "location=0," 
    + "menubar=0,"
    + "resizable=0,"
    + "scrollbars=0,"
    + "status=1," 
    + "titlebar=0,"
    + "toolbar=0,"
    + "hotkeys=0,"
    + "screenx=" + xposition + ","  //NN Only
    + "screeny=" + yposition + ","  //NN Only
    + "left=" + xposition + ","     //IE Only
    + "top=" + yposition;           //IE Only

    window.open(pageToLoad, winName, args);
}

function showblurb(str) {
	var eElem, aDivs = document.all.tags("DIV");
	var iDivsLength = aDivs.length;
	if (str == 'online') {
		for(i=0; i<iDivsLength; i++) {
			eElem = aDivs[i];
			if (eElem.id.indexOf('divOnline') != -1) {
				eElem.style.display = "";
			}
			else {
				if ((eElem.id.indexOf('divOffline') != -1) || (eElem.id.indexOf('divPOrder') != -1)){
					eElem.style.display = "none";
				}
			}
		}
	}
	if (str == 'offline') {
		for(i=0; i<iDivsLength; i++) {
			eElem = aDivs[i];
			if (eElem.id.indexOf('divOffline') != -1) {
				eElem.style.display = "";
			}
			else {
				if ((eElem.id.indexOf('divOnline') != -1) || (eElem.id.indexOf('divPOrder') != -1)){
					eElem.style.display = "none";
				}
			}
		}
	}
	if (str == 'porder') {
		for(i=0; i<iDivsLength; i++) {
			eElem = aDivs[i];
			if (eElem.id.indexOf('divPOrder') != -1) {
				eElem.style.display = "";
			}
			else {
				if ((eElem.id.indexOf('divOnline') != -1) || (eElem.id.indexOf('divOffline') != -1)){
					eElem.style.display = "none";
				}
			}
		}
	}
}
//-->
