
// fucnion แสดง mouse over ของ Table
<!--
/* function msg_status(msg) { window.status=(msg); return true;}
function sbar (st) { st.style.backgroundColor = '#f4f4f4'; }
function cbar (st) { st.style.backgroundColor = ''; }
function cmt_sbar (st) { st.style.backgroundColor = ''; }
function cmt_cbar (st) { st.style.backgroundColor = ''; }
function mail(email) {
	popUpWin = window.open('http://3mail.superboard.com/mail.cgi?tmail='+email,'','width=335,height=345');
	return false;
}
*/


// LTrim(string) : Returns a copy of a string without leading spaces.
function ltrim(str)
{
   var whitespace = new String(" \t\n\r");
   var s = new String(str);
   if (whitespace.indexOf(s.charAt(0)) != -1) {
      var j=0, i = s.length;
      while (j < i && whitespace.indexOf(s.charAt(j)) != -1)
         j++;
      s = s.substring(j, i);
   }
   return s;
   
}

//RTrim(string) : Returns a copy of a string without trailing spaces.
function rtrim(str)
{
   var whitespace = new String(" \t\n\r");
   var s = new String(str);
   if (whitespace.indexOf(s.charAt(s.length-1)) != -1) {
      var i = s.length - 1;       // Get length of string
      while (i >= 0 && whitespace.indexOf(s.charAt(i)) != -1)
         i--;
      s = s.substring(0, i+1);
   }
   return s;
}

// Trim(string) : Returns a copy of a string without leading or trailing spaces
function trim(str) {
   return rtrim(ltrim(str));
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features).focus();

}