    function mOverGoldLined(obj) {
	  obj.style.color = '#af9862';
	  obj.style.textDecoration = "underline";
    }
    function mOutGold(obj) {
	  obj.style.color = '#af9862';
	  obj.style.textDecoration = "none";
    }    
    function std_white_lined(obj) {
	  obj.style.color = '#ffffff';
	  obj.style.textDecoration = "underline";
    }
    function std_white(obj) {
	  obj.style.color = '#ffffff';
	  obj.style.textDecoration = "none";
    }    
    function mOver_lb_ul(obj) {
	  obj.style.color = '#3699B9';
	  obj.style.textDecoration = "underline";
    }
    function mOut_lb(obj) {
	  obj.style.color = '#3699B9';
	  obj.style.textDecoration = "none";
    }
    function mOverBlueLined(obj) {
	  obj.style.color = '#3269cd';
	  obj.style.textDecoration = "underline";
    }
    function mOutBlue(obj) {
	  obj.style.color = '#3269cd';
	  obj.style.textDecoration = "none";
    }    
    function mOverBlack(obj) {
	  obj.style.color = '#000000';
	  obj.style.textDecoration = "none";
    }
    function mOutBlackLined(obj) {
	  obj.style.color = '#000000';
	  obj.style.textDecoration = "underline";
    }        
    function mOver_wh_ul(obj) {
	  obj.style.color = '#ffffff';
	  obj.style.textDecoration = "underline";
    }  
    function mOut_wh(obj) {
	  obj.style.color = '#ffffff';
	  obj.style.textDecoration = "none";
    }      
    function SwapFont(obj,thiscolor) {
	  obj.style.color = thiscolor;
	  obj.style.textDecoration = "none";
    }    
          
          
          
          