var stdMsg="Enjoy Your Stay!  Tell A Friend";
var myMsgKeep;
space="                        ";

function callmsg(s, myMsg){
      myMsgKeep = myMsg;
      if (s == 1) {
      window.status = stdMsg+space+space+myMsgKeep;
      setTimeout("callmsg(0, myMsgKeep)",5000);
      } 
      else {
       window.status=  space + space + stdMsg;   
       setTimeout("callmsg(1, myMsgKeep)",5000);
      
      }
}
