	function mOver(tdId,bgColour){
		if(document.getElementById){
			document.getElementById(tdId).style.backgroundColor = bgColour;}
		else if(document.all){
			document.all.item(tdId).style.backgroundColor = bgColour;}
		}

	function mOut(tdId,bgColour){
		if(document.getElementById){
			document.getElementById(tdId).style.backgroundColor = bgColour;}
		else if(document.all){
			document.all.item(tdId).style.backgroundColor = bgColour;}
		}

	function left(str, n){
		if (n <= 0)
		    return "";
		else if (n > String(str).length)
		    return str;
		else
		    return String(str).substring(0,n);
	}

	function new_Window(url,w,h) {
	  window.open(url, 'details', 'left=250,top=175,width=' + w + ',height=' + h + ',status,scrollbars').focus();
	}