// JavaScript Document
function VeDauTrang_pageWidth() {return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ?       document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;} 

function VeDauTrang_pageHeight() {return  window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ?  document.documentElement.clientHeight : document.body != null? document.body.clientHeight : null;}
 
function VeDauTrang_posLeft() {return typeof window.pageXOffset != 'undefined' ? window.pageXOffset :document.documentElement && document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ? document.body.scrollLeft : 0;}
 
function VeDauTrang_posTop() {return typeof window.pageYOffset != 'undefined' ?  window.pageYOffset : document.documentElement && document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ? document.body.scrollTop : 0;} 

function VeDauTrang_posRight() {return VeDauTrang_posLeft()+VeDauTrang_pageWidth();} 

function VeDauTrang_posBottom() {return VeDauTrang_posTop()+VeDauTrang_pageHeight();}

document.write('<div id="vedautrang" style="position:absolute; z-Index:100; width:120px"><a href="#" style="color:#669BD0; font-weight:bold;"><img src="/images/muitenvedau.gif" align="absmiddle" width="15px"> Về đầu trang</a></div>');
var vedautrang=document.getElementById('vedautrang');
vedautrang.style.left=(VeDauTrang_posRight()-140)+'px';
vedautrang.style.top=(VeDauTrang_posBottom()-30)+'px'; 
window.onresize=function(){
	vedautrang.style.left=(VeDauTrang_posRight()-140)+'px';
	vedautrang.style.top=(VeDauTrang_posBottom()-30)+'px'; 
}
window.onscroll=function(){
	vedautrang.style.left=(VeDauTrang_posRight()-140)+'px';
	vedautrang.style.top=(VeDauTrang_posBottom()-30)+'px'; 
}

