﻿	//距離網頁左邊界的距離
	//若要在網頁的右邊則要改成	
	var _x = document.body.clientWidth - document.getElementById("mydiv").offsetWidth;
	var yy = 60;

	function init(){
		//設定mydiv的位置為(_x,yy)
		document.getElementById("mydiv").style.left = _x;
		document.getElementById("mydiv").style.top = yy;
		//每100毫秒移動一次
		setInterval("moveAd()",100);
	}
	
	//移動用
	function moveAd(){
	if (self.pageYOffset) { 
		yScroll = self.pageYOffset; 
	} else if (document.documentElement && document.documentElement.scrollTop){ // Explorer 6 Strict 
		yScroll = document.documentElement.scrollTop; 
	} else if (document.body) {// all other Explorers 
		yScroll = document.body.scrollTop; 
	}; 
		document.getElementById("mydiv").style.top = yScroll+yy ;
		document.getElementById("mydiv").style.left =document.body.clientWidth - document.getElementById("mydiv").offsetWidth-yy  ;
		
	}
	//載入網頁後，執行init()
	window.onload = init;
	
	
