// JavaScript Document


  message     = "Welcome to Hyton Leelavadee Resort Hotel^" +
  				"Hotels in Patong, Phuket: stay at the Hyton Leelavadee Resort Hotel^" +
                "Web Design by Expressdata^" 
               
               
  scrollSpeed = 25
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

function chkinp(form){	
	if (form.name.value==""){
	alert("Sorry, Please fill your Name")
	form.name.focus();
	return false;
	}else if (form.email.value==""||form.email.value.indexOf('@')<0){
	alert("Sorry, Please fill your Email Address")
	form.email.focus();
	return false;
	}
}
