// JavaScript Document
bymessage     = "ยินดีต้อนรับทุกท่านสู่ องค์การบริหารส่วนตำบลบ้านใหญ่^ " +
	"เว็บไซต์ของเรานำเสนอข้อมูลทั้งทางด้านสังคม เศรษฐกิจ การปกครอง นโยบาย แผนงาน และข้อมูลทั่วไป^ " +	
                	"เรามีสถานที่ท่องเที่ยวพร้อมทั้งสินค้า OTOP มากมาย^ " +
              	"ซึ่งคุณสามารถคลิกเข้าไปเยี่ยมชมได้ตามสะดวก^ " +
              	"ติดต่อ อบต. หมายเลข 0-3732-1199^" +
             	"^"
  scrollSpeed = 25
  lineDelay   = 1500
  txt         = ""
  function scrollText(pos) {
    if (bymessage.charAt(pos) != '^') {
      txt    = txt + bymessage.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == bymessage.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
scrollText(0)

//JavaScript Don't Clik Right
var message_="อบต.บ้านใหญ่ ยินดีต้อนรับ !!..."
function click(e)
{
if (document.all) {
if (event.button == 2) {
alert(message_);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message_);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;