	var xV1 = 0;
	function stayHome(){	
		nV = document.body.scrollTop;	
		document.getElementById('popup').style.top = xV1+nV;
	}
	function init(){
		xV1 = document.getElementById('popup').offsetTop;
	}
	window.onload=init;
	window.onscroll=stayHome;

