
if(self!=top) { url=self.location.href; 
if(document.images) { top.location.replace(url); } 
else { top.location.href=url; } } 
else { self.focus(); } 

/* fly in ad */
var ie=document.all
var dom = document.getElementById
var ns4 = document.layers
var bouncelimit = 16
var direction = "up"

function initbox(){

var whichLayer = 'dropin';
if (document.getElementById)
	{
		// this is the way the standards work
		var style2 = document.getElementById(whichLayer).style;
		style2.display = style2.display? "":"block";
	}
	else if (document.all)
	{
		// this is the way old msie versions work
		var style2 = document.all[whichLayer].style;
		style2.display = style2.display? "":"block";
	}
	else if (document.layers)
	{
		// this is the way nn4 works
		var style2 = document.layers[whichLayer].style;
		style2.display = style2.display? "":"block";
	}

if (!dom&&!ie&&!ns4)
return
crossobj=(dom)?document.getElementById("dropin").style : ie? document.all.dropin : document.dropin
scroll_top=(ie)? document.body.scrollTop : window.pageYOffset
crossobj.top = scroll_top - 250
crossobj.visibility=(dom||ie)? "visible" : "show"
dropstart = setInterval("dropin()", 40)
}
function dropin(){
scroll_top=(ie)? document.body.scrollTop : window.pageYOffset
if (parseInt(crossobj.top)<150+scroll_top)
crossobj.top = parseInt(crossobj.top) + 40
else{
clearInterval (dropstart)
bouncestart = setInterval("bouncein()", 40)
}
}
function bouncein(){
crossobj.top = parseInt(crossobj.top) - bouncelimit
if (bouncelimit<0)
bouncelimit+=8
bouncelimit = bouncelimit * -1
if (bouncelimit==0){
clearInterval (bouncestart)
}
}
function dismissbox(){
if (window.bouncestart) clearInterval(bouncestart)
crossobj.visibility = "hidden"
}
