var tgrb={
  swf:function(f,w,h,c) {
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+
                   ' width="'+w+'" height="'+h+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'+
                   ' <param name="movie" value="'+f+'"><param name="quality" value="high"><param name="loop" value="true">'+
                   ' <param name="bgcolor" value="'+c+'"><param name="scale" value="noscale"><param name="wmode" value="opaque">'+
                   '<embed src="'+f+'" width="'+w+'" height="'+h+'"'+' quality="high" loop="true" bgcolor="'+c+'" scale="noscale"'+
                   ' wmode="opaque" allowScriptAccess="sameDomain"'+
                   ' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
  },
  getPos:function(e) {
    for (var x=e.offsetLeft,y=e.offsetTop; e=e.offsetParent; x+=e.offsetLeft,y+=e.offsetTop);
    return {left:x,top:y};
  },
  openAd:function() {
    var b=document.getElementById('hellbanner').style;
    if (b.display!='none') return;
    var e=document.getElementById('rockshow'),p=this.getPos(e);
    b.top=p.top+'px';
    b.left=(p.left+e.width)+'px';
    b.display='block';
  },
  closeAd:function() {
    document.getElementById('hellbanner').style.display='none';
  }
}
