	function ShowDateTime()
	{
		var today = new Date();
		var dStr = today.toLocaleDateString();
		document.write(dStr);
	}

	function ShowWeekend()
	{
		var D= new Date() ;// Today
		D.setDate(D.getDate()+(7-D.getDay())%7);
		var dStr = D.toLocaleDateString();
		document.write(dStr);
	}
	
function highlite(theRow, theRowColor) {
	if (theRowColor == 'over')
	{
		theRowColor = '#8080FF' //****Highlight Color****//
	}
	else
	if (theRowColor == 'out')
	{
		theRowColor = '#FFFFFF' //****Male Color****//
	}
	if (theRowColor == '' || typeof(theRow.style) == 'undefined') {
		return false;
	}
	if (typeof(document.getElementsByTagName) != 'undefined') {
	var theCells = theRow.getElementsByTagName('td');
	}
	else if (typeof(theRow.cells) != 'undefined') {
	var theCells = theRow.cells;
	}
	else {
	return false;
	}
	var rowCellsCnt = theCells.length;
	for (var c = 0; c < rowCellsCnt; c++) {
	theCells[c].style.backgroundColor = theRowColor;
	}
	return true;
} // end of the 'highlite()' function


// Original JavaScript code by Duncan Crombie: dcrombie at chirp.com.au
// Please acknowledge use of this code by including this header.

  var bites = document.cookie.split("; "); // break cookie into array of bites

  function getCookie(name) { // use: getCookie("name");
    for (var i=0; i < bites.length; i++) {
      nextbite = bites[i].split("="); // break into name and value
      if (nextbite[0] == name) // if name matches
        return unescape(nextbite[1]); // return value
    }
    return null;
  }

  var today = new Date();
  var expiry = new Date(today.getTime() + 7 * 24 * 60 * 60 * 1000); // plus 28 days

  function setCookie(name, value) { // use: setCookie("name", value);
    if (value != null && value != "")
      document.cookie=name + "=" + escape(value) + "; expires=" + expiry.toGMTString();
    bites = document.cookie.split("; "); // update cookie bites
  }

