	<!--		
	var OldBg;
				
	function mOvr(src,clrOver) {
		if (!src.contains(event.fromElement)) {
			//src.style.cursor = 'hand';
			src.style.cursor = 'default';
			OldBg = src.background;
			src.background = clrOver;
			}
		}
	  
	function mOut(src) {
		if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.background = OldBg;
			}
		}
	  
	function mClk(src) {
		if(event.srcElement.tagName=='td') {
			src.children.tags('td')[0].click();
			}
		}
	

	var WinNum=0;
	function WindowOpenNew(Url,x,y)
	{
	var String;
	String =  "toolbar=1,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,copyhistory=0,titlebar=0,button=0";
	String += ",width=";
	String += x;
	String += ",height=";
	String += y;
	WinPic=window.open(Url,WinNum++,String);
	}
	
	function WindowOpen(Url,x,y)
	{
	var String;
	String =  "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0,titlebar=0,button=0";
	String += ",width=";
	String += x;
	String += ",height=";
	String += y;
	WinPic=window.open(Url,WinNum++,String);
	}
	
	function check()
	{
	      var v1 = document.frmboard.txtname.value;
	      var v2 = document.frmboard.txtmessage.value;
	
	        if (v1.length==0)
	           {
	           alert("กรุณาเขียนชื่อด้วยค่ะ !!!");
	           document.frmboard.txtname.focus();           
	           return false;
	           }
	        else if (v2.length==0)
	           {
	           alert("กรุณาเขียนข้อความด้วยค่ะ !!!") ;
	           document.frmboard.txtmessage.focus();           
	           return false;
	           }
	        else
	           return true;
	}

	//-->

