var style="";
style+="<style>#dropbox{width:150px;height:460px;border:2px solid black;background-color:#630000;position:absolute;left:20;top:100px;visibility:hidden;padding:4px;z-index:100;filter:progid:DXImageTransform.Microsoft.RandomDissolve(duration=1)progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135)}</style>";
document.write(style)

var ie=document.all
var dom=document.getElementById
var ns4=document.layers
var calunits=document.layers? "":"px"
var bouncelimit=32
var direction="up"
function dropbox(){
if(!dom&&!ie&&!ns4)
return
crossobj=(dom)?document.getElementById("dropbox").style:ie?document.all.showbox:document.showbox
scroll_top=(ie)?truebody().scrollTop:window.pageYOffset
crossobj.top=scroll_top-250+calunits
crossobj.visibility=(dom||ie)?"visible":"show"
dropstart=setInterval("showbox()",50)
}
function showbox(){
scroll_top=(ie)?truebody().scrollTop:window.pageYOffset
if(parseInt(crossobj.top)<100+scroll_top)
crossobj.top=parseInt(crossobj.top)+40+calunits
else{
clearInterval(dropstart)
bouncestart=setInterval("bouncein()",50)
}
}
function bouncein(){
crossobj.top=parseInt(crossobj.top)-bouncelimit+calunits
if(bouncelimit<0)
bouncelimit+=8
bouncelimit=bouncelimit*-1
if(bouncelimit==0){
clearInterval(bouncestart)
}
}
function dismissbox(){
if(window.bouncestart) clearInterval(bouncestart)
crossobj.visibility="hidden"
}
function truebody(){
return(document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

var enablefade="yes" 
var showonscroll="yes"
var IEfadelength=1 
var Mozfadedegree=0.05
function fadebox(){
var ie=document.all&&!window.opera
var dom=document.getElementById
iebody=(document.compatMode=="CSS1Compat")?document.documentElement:document.body
objref=(dom)?document.getElementById("fadebox"):document.all.fadebox
var scroll_top=(ie)?iebody.scrollTop:window.pageYOffset
var docwidth=(ie)?iebody.clientWidth:window.innerWidth
docheight=(ie)?iebody.clientHeight:window.innerHeight
var objwidth=objref.offsetWidth
objheight=objref.offsetHeight
objref.style.left=docwidth/2-objwidth/2+"px"
objref.style.top=scroll_top+docheight/2-objheight/2+"px"
if(showonscroll=="yes")
showonscrollvar=setInterval("staticfadebox()",50)
if(enablefade=="yes"&&objref.filters){
objref.filters[0].duration=IEfadelength
objref.filters[0].Apply()
objref.filters[0].Play()
}
objref.style.visibility="visible"
if(objref.style.MozOpacity){
if(enablefade=="yes")
mozfadevar=setInterval("mozfadefx()",90)
else{
objref.style.MozOpacity=1
controlledhidebox()
}
}
else
controlledhidebox()
}
function mozfadefx(){
if(parseFloat(objref.style.MozOpacity)<1)
objref.style.MozOpacity=parseFloat(objref.style.MozOpacity)+Mozfadedegree
else{
clearInterval(mozfadevar)
controlledhidebox()
}
}
function staticfadebox(){
var ie=document.all&&!window.opera
var scroll_top=(ie)?iebody.scrollTop:window.pageYOffset
objref.style.top=scroll_top+docheight/2-objheight/2+"px"
}
function hidefadebox(){
objref.style.visibility="hidden"
if(typeof showonscrollvar!="undefined")
clearInterval(showonscrollvar)
}
function controlledhidebox(){
if(autohidebox[0]=="yes"){
var delayvar=(enablefade=="yes" && objref.filters)? (autohidebox[1]+objref.filters[0].duration)*1000 : autohidebox[1]*1000
setTimeout("hidefadebox()",delayvar)
}
}