<!-- STATUSBAR!-->
	var actuel=0;
	var barMessage="MOTORCYCLE TOURS IN THE PHILIPPINES FROM TACLOBAN CITY TO CALICOAN";
	function scroll_it()
	{
		actuel = (actuel == barMessage.length) ? 0: actuel+1;
		defaultStatus = barMessage.substr(0, actuel)
		+ barMessage.charAt(actuel).toUpperCase()
		+ barMessage.substr(actuel+1, barMessage.length);
		setTimeout("scroll_it()",100);
	}
	scroll_it();
	
<!-- "NO RIGHT CLIC" !-->
	function right(e)
	{
		if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
		return false;
		else
			if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
			{
				alert("© Copyright Tarantula");
				return false;
			}
				return true;
			}
		document.onmousedown=right;
		document.onmouseup=right;
			if (document.layers)
				window.captureEvents(Event.MOUSEDOWN);
			if (document.layers)
				window.captureEvents(Event.MOUSEUP);
				window.onmousedown=right;
				window.onmouseup=right;

<!-- BANNER !-->	
	function banner01(imgSource,url,alt,chance) 
	{
		this.imgSource = imgSource;
		this.url = url;
		this.alt = alt;
		this.chance = chance;
	}

	function dispBanner01() 
	{
		with (this) document.write("<A HREF=" + url + "><IMG SRC='" + imgSource + "' WIDTH=468 HEIGHT=60 BORDER=1 ALT='" + alt + "'></A>");
	}
		banner01.prototype.dispBanner01 = dispBanner01;
		banners01 = new Array();
		banners01[0] = new banner01("_banners/philippines-tourism-banner-01.jpg",
                       				"../hotel/leyte-park-resort-hotel/01-leyte-park-resort-hotel-index.html target='_blank'",
									"Asia travel tourism destination : Leyte Park Resort 01",
                       				50);
		banners01[1] = new banner01("_banners/philippines-tourism-banner-02.jpg",
                       				"../hotel/leyte-park-resort-hotel/01-leyte-park-resort-hotel-index.html target='_blank'",
									"Asia travel tourism destination : Leyte Park Hotel 02",
                       				50);
			sum_of_all_chances = 0;
				for (i = 0; i < banners01.length; i++) 
				{
					sum_of_all_chances += banners01[i].chance;
				}
	function randomBanner01() 
	{
		chance_limit = 0;
		randomly_selected_chance = Math.round((sum_of_all_chances - 1) * Math.random()) + 1;
		for (i = 0; i < banners01.length; i++) 
		{
			chance_limit += banners01[i].chance;
			if (randomly_selected_chance <= chance_limit) 
			{
				document.write("<A HREF=" + banners01[i].url + "><IMG SRC='" + banners01[i].imgSource + "' WIDTH=468 HEIGHT=60 BORDER=1 ALT='" + banners01[i].alt + "'></A>");
				return banners01[i];
				break;
     		}
   		}
	}
