function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function mOvr(src,backgroundIn) {
  if (!src.contains(event.fromElement)) {
	  src.style.cursor = 'hand';
	  src.background = backgroundIn;
	}
}

function mOut(src,backgroundIn) {
	if (!src.contains(event.toElement)) {
	  src.style.cursor = 'default';
	  src.background = backgroundIn;
	}
}

function mOvr_A(src,clrOver) {
	if (!src.contains(event.fromElement)) {
	  src.style.cursor = 'hand';
	  src.style.Color = clrOver;
	}
}

function mOut_A(src,backgroundIn) {
	if (!src.contains(event.toElement)) {
	  src.style.cursor = 'default';
	  src.style.background = backgroundIn;
	}
}

function mClk(src) {
    location.href = src	
}