//open window ****************************
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//change and restore color
function restoreCol(elem) {
	elem.style.color='';
	elem.style.backgroundColor='';
	elem.style.cursor='';
	elem.className='';
}
function changeCol(elem,fColor,bColor,theCursor,theClass) {
	elem.style.color=fColor;
	elem.style.backgroundColor=bColor;
	elem.style.cursor=theCursor;
	elem.className=theClass;
}

