// JavaScript Document
var tl=new Array(


"Welcome to our Hotel Existence...",
"Pardon our appearance, this site undergoes an updated... To contact us please call +1 347 248 0495 or email at info@hotelexistence.net",
"Thank you!...",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
"Welcome to our Hotel Existence...",
"Pardon our appearance, this site undergoes an updated... To contact us please call +1 347 248 0495 or email at info@hotelexistence.net",
"Thank you!...",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
"Welcome to our Hotel Existence...",
"Pardon our appearance, this site undergoes an updated... To contact us please call +1 347 248 0495 or email at info@hotelexistence.net",
"Thank you!...",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
"Welcome to our Hotel Existence...",
"Pardon our appearance, this site undergoes an updated... To contact us please call +1 347 248 0495 or email at info@hotelexistence.net",
"Thank you!...",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",

);
var speed=25;
	var index=0; text_pos=0;
	var str_length=tl[0].length;
	var contents, row;

	function type_text()
	{
	  contents='';
	  row=Math.max(0,index-9);
	  while(row<index)
		contents += tl[row++] + '\r\n';
	  document.forms[0].elements[0].value = contents + tl[index].substring(0,text_pos) + "_";
	  if(text_pos++==str_length)
	  {
		text_pos=0;
		index++;
		if(index!=tl.length)
		{
		  str_length=tl[index].length;
		  setTimeout("type_text()",1500);
		}
	  } else
		setTimeout("type_text()",speed);
	 
	}
	//-->
