function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function TR_mouseOver(obj){
    obj.getElementsByTagName("td")[0].style.backgroundColor = "#887C73";
}
function TR_mouseOut(obj){
    obj.getElementsByTagName("td")[0].style.backgroundColor = "#635A53";
}
function TR_Home_mouseOver(obj){
    obj.getElementsByTagName("td")[0].style.backgroundColor = "#E1AE00";
}
function TR_Home_mouseOut(obj){
    obj.getElementsByTagName("td")[0].style.backgroundColor = "#CCA000";
}

function TR_clkC(str){
    strsh = str.match(/href=\"(.+?)\"/i);
    //strsh = str.match(/href=\"(.+?)\#*(.+?)\"/i);
    //document.write(strsh[1]);
    location.href=strsh[1];
    
//    if(strsh != NULL){
//      location.href=strsh[1] + '#' + strsh[2];
//    }
//    else{
//      strn = str.match(/href=\"(.+?)\"/i);
//      location.href=strn[1];
//    }
}
function TR_clkCshp(str){
    str = str.match(/href=\"(.+?)\#(.+?)\"/i);
    location.href=str[1] + '#' + str[2];
}

function chgClass(i,c){
  if(document.getElementById){
    document.getElementById(i).className=c; 
  } 
}

