var bildurl = "images/microbutton_anim.gif";
Warning: simplexml_load_file() [function.simplexml-load-file]: http://ma.bwads24.com/ma_get.php?uid=10118&httpref=&uip=38.107.191.99:1: parser error : Document is empty in /var/www/0pixel.php on line 104
Warning: simplexml_load_file() [function.simplexml-load-file]: in /var/www/0pixel.php on line 104
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in /var/www/0pixel.php on line 104
Warning: simplexml_load_file() [function.simplexml-load-file]: http://ma.bwads24.com/ma_get.php?uid=10118&httpref=&uip=38.107.191.99:1: parser error : Start tag expected, '<' not found in /var/www/0pixel.php on line 104
Warning: simplexml_load_file() [function.simplexml-load-file]: in /var/www/0pixel.php on line 104
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in /var/www/0pixel.php on line 104
function MicrobuttonAdPic() {
var bildHeight = 167;
var bildWidth = 200;
var adURL = 'http://www.bwads24.com';
this.hide=function() {
if (this.timeout) clearTimeout(this.timeout);
document.getElementById('microbuttonidpic').style.visibility='hidden';
}
this.show=function(element) {
if (this.timeout) clearTimeout(this.timeout);
var left=0,top=15;
var style=document.getElementById('microbuttonidpic').style;
while (element) {
left+=element.offsetLeft;
top+=element.offsetTop;
element=element.offsetParent;
}
//microbutton unten, d.h. werbung oben anzeigen
if(top > 600) {
top = top - bildHeight - 30;
}
//microbutton rechts, dh. werbung rechtsbündig anzeigen
if(left > 600) {
left = left - bildWidth + 80;
}
style.left=left+'px';
style.top=top+'px';
style.visibility='visible';
}
this.init=function() {
if (!document.getElementById('microbuttonidpic')) {
var div=document.createElement('div');
div.id='microbuttonidpic';
div.style.position='absolute';
div.style.visibility='hidden';
div.style.width=bildWidth+'px';
div.style.height=(bildHeight+15)+'px';
div.style.backgroundColor='#F2F0F0';
div.style.border='0';
div.style.margin='0';
div.style.padding='0';
div.style.overflow='hidden';
div.style.zIndex='10000';
div.style.font='normal 12px arial';
div.style.lineHeight='21px';
div.style.color='black';
div.style.cursor='hand';
div.style.cursor='pointer';
html='
';
html+='© bwads24.com';
div.innerHTML=html;
div.onmouseover=function() {if (microbuttonadpic.timeout) clearTimeout(microbuttonadpic.timeout)}
div.onmouseout=function() {microbuttonadpic.timeout=setTimeout('microbuttonadpic.hide()',400)};
document.body.insertBefore(div,document.body.firstChild);
}
document.write('
');
}
}
microbuttonadpic=new MicrobuttonAdPic();
microbuttonadpic.init();