

	function setCursor(target) {
	    if (isIE) {target.style.cursor='hand';}
	    else {target.style.cursor='pointer';}
	    }

	function setTextStyle(target, pick) {
	    var myTarget = document.getElementById(pick);	    
		if (pick == last) {
			myTarget.style.color = "#dfdee3";
		}
		else {
			myTarget.style.color = "#ee0000";
		}
	}


	function setInStyle(pick){
		pick.style.color="red";
		pick.style.fontWeight="bold";
		pick.style.backgroundColor="blue";
	}


	function setOutStyle(pick){
		pick.style.color="white";
		pick.style.fontWeight="normal";
		pick.style.backgroundColor="#7070bb";
	}



	function setInStyle2(pick){
		pick.style.color="red";
		pick.style.fontWeight="bold";
	}


	function setOutStyle2(pick){
		pick.style.color="white";
		pick.style.fontWeight="normal";
	}