var posx=0

if(window.innerWidth){
	posx=window.innerWidth-136;
}else{
	if(document.body){
		if(document.body.clientWidth){
			posx=document.body.clientWidth-136;
		}
	}
}

var posy=5;

document.write('<div id="meinehplayer" style="position:absolute;left:'+posx+';top:'+posy+';visibility=visible;z-index:9999999;">');
document.write('<map name="MeineHPCloseBTN"><area shape="rect" coords="93,6,113,26" href="javascript:closeMeineHPLayer()" alt="schlie&szlig;en"></map>');
document.write('<table border="0" cellpadding="0" cellspacing="0" >');
document.write('<tr>');
document.write('<td><img src="http://www.meine-hp.net/images/layerheader.gif" alt="-werbung-" border="0" usemap="#MeineHPCloseBTN" /></td>');
document.write('</tr><tr><td colspan="2" align="center">');
document.write('<a href="http://www.affiliwelt.net/klick.php?bannerid=15419&pid=15842&prid=766" target="_blank">');
document.write('<img src="http://view-affiliwelt.net/b15419_15842_766.gif" border="0" /></a>');
document.write('</td></tr></table><script LANGUAGE="JavaScript" SRC=""></script></div>');

function closeMeineHPLayer(){
	var l=document.getElementById('meinehplayer');
	if(l){
		l.style.display="none";
		l.innerHTML='';
	}
}

function moveMeineHPLayer(){
	posy=5;
	
	if(window.pageYOffset){
		posy=window.pageYOffset+10;
	}else{
		if(document.body){
			if(document.body.scrollTop){
				posy=document.body.scrollTop+10;
			}
		}
	}

	var l=document.getElementById('meinehplayer');
	if(l){
		l.style.top=posy+"px";
	}

	window.setTimeout('moveMeineHPLayer();',100);
}

moveMeineHPLayer();