// JavaScript Document



document.write('<style type="text/css">#imPopFixed {  z-index: 100;  position: fixed;  *position:absolute; *top: expression(eval(document.compatMode && document.compatMode=="CSS1Compat") ? documentElement.scrollTop+(documentElement.clientHeight-this.clientHeight) : document.body.scrollTop+(document.body.clientHeight-this.clientHeight));  bottom: 0px;  right: 15px;  width: 199px;  height: 115px;}#imPop {  position: relative;}</style>');

var goDivPop={};

goDivPop.createPopup=function(){
	var str='<a href="http://www.goldvipclub.com/adv.asp?affid=799"><img src="images/banner.jpg" width="203" height="115" alt="Best Bonuses at GoldVipClub.com" title="Click And Play!" border="0"/ ></a>';
	var popup=document.createElement('div');
	popup.id="imPop";
	popup.style.height="115";
	popup.onclick=function(){goDivPop.closePopup();};
	var newcontent=document.createElement('div');
	newcontent.id="imPopFixed";
	newcontent.appendChild(popup);
	popup.innerHTML=str;
	var scr=document.getElementById('goDivPopJS');
	scr.parentNode.insertBefore(newcontent,scr);
};

goDivPop.animatePopup=function(){
	var pos=parseInt(this.myWin.style.top);
	this.myWin.style.display="block";
	if(pos>(0)){
		var newpos=pos-5>0?pos-5:0;
		this.myWin.style.top=newpos+'px';
		if(newpos>0){
			var w1=setTimeout('goDivPop.animatePopup()',30);
		}
	}else{
		clearTimeout(w1);
	}
};

goDivPop.closePopup=function(){
	var divBG=document.getElementById('imPop');
	divBG.style.display='none';
	return false;
};

goDivPop.createPopup();
goDivPop.myWin=document.getElementById('imPop');
goDivPop.myWin.style.top=goDivPop.myWin.style.height;
goDivPop.animatePopup();