
var pos1= 250;
var pos2 = 120;
var pos3 = 250;
function Scroll() {
  if (!document.getElementById) return;
  obj=document.getElementById("tourtn");
  pos3 -=1;
  if (pos3 < 0-obj.offsetHeight + 120)
	  pos3 =250    
  obj.style.top=pos3;
  window.setTimeout("Scroll()",60);
}
function Scroll1() {
  if (!document.getElementById) return;
  obj=document.getElementById("tournn");
  pos2 -=1;
  if (pos2 < 0-obj.offsetHeight + 120)
     pos2 = 250
  obj.style.top=pos2;
  window.setTimeout("Scroll1()",60);
}
function Scroll2() {
  if (!document.getElementById) return;
  obj=document.getElementById("fticket");
  pos1 -=1;
  if (pos1 < 0-obj.offsetHeight+60)
	  pos1 =100    
  obj.style.top=pos1;
  window.setTimeout("Scroll2()",60);
}
