  function mOvr(src,clrOver) {
    if (!src.contains(event.fromElement)) {
	  src.style.cursor = 'hand';
	  src.bgColor = clrOver;
	}
  } 
  function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
	  src.style.cursor = 'default';
	  src.bgColor = clrIn;
	}
  }
	if (window.Event) 
document.captureEvents(Event.MOUSEUP); 
function nocontextmenu() 
{ 
event.cancelBubble = true 
event.returnValue = false; 
return false; 
} 
function norightclick(e) 
{ 
if (window.Event) 
{ 
if (e.which == 2 || e.which == 3) 
return false; 
} 
else 
if (event.button == 2 || event.button == 3) 
{ 
event.cancelBubble = true 
event.returnValue = false; 
return false; 
} 
} 
if (document.layers) { 
document.captureEvents(Event.MOUSEDOWN); 
} 
document.oncontextmenu = nocontextmenu; 
document.onmousedown = norightclick; 
document.onmouseup = norightclick; 
// function 
// array function
function makeArray(len) 
{
    for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
}
// array of month names
var monthnames = new makeArray(12);
		monthnames[0] = "January";
		monthnames[1] = "February";
		monthnames[2] = "March";
		monthnames[3] = "April";
		monthnames[4] = "May";
		monthnames[5] = "June";
		monthnames[6] = "July";
		monthnames[7] = "August";
		monthnames[8] = "September";
		monthnames[9]  = "October";
		monthnames[10] = "November";
		monthnames[11] = "December";;
// array of day names
		var daynames = new makeArray(7);
		daynames[0] = "Sunday";
		daynames[1] = "Monday";
		daynames[2] = "Tuesday";
		daynames[3] = "Wednesday";
		daynames[4] = "Thursday";
		daynames[5] = "Friday";
		daynames[6] = "Saturday";
//set date stuff
		var now = new Date();
		var day = now.getDay();
		var month = now.getMonth();
		var year = now.getYear();
		var date = now.getDate();
		var hour=now.getHours();
		var minutes=now.getMinutes();
		function writeDate()
{
document.write("<b><font"+" color='#2d78cc' face='verdana'> "+ monthnames[month] +" " + date +"  "+ daynames[day] + " "+ year +"  "+"</font></b>");
}
