var bground, bcolour;
function mOvr(src,clrOver){
	if (!src.contains(event.fromElement)){
		bground = src.background;
		bcolour = src.bgColor;
		src.style.cursor = 'hand';
		src.bgColor = clrOver;
		src.background = '';
	}
}
function mOut(src,clrIn){
	if (!src.contains(event.toElement)){
		src.style.cursor = 'default';
		if (clrIn=='') { src.bgColor = bcolour; }
		else { src.bgColor = clrIn; }
		 src.background = bground;
	}
}
function mClk(src){
	if(event.srcElement.tagName=='TD')
	src.children.tags('A')[0].click();
}

function MM_openImageWindow(img,title,sixeX,sizeY) { //v2.0
	window.open("http://www.progress-plus.com/imageWindow.php?img=" + img + "&title=" + title,"_blank","width=" + sixeX + ",height=" + sizeY + ",resizable,scrollbars");
}

