$(function(){

    
  	function popClientHeight(){
        return document.documentElement.clientHeight;
    };
	function popScrollTop(){
        return document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop;
    };
	function topnow()
    {	document.getElementById("pop").style.top =  popScrollTop()+popClientHeight()-200 - jQuery("#pop").height()+"px"};
	
	jQuery(window).scroll(function(){topnow();}); 

		   
})	   
