		function getMouseXY(e){
			var MouseXY = Array();
			var x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
			var y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
			MouseXY[0] = x;		//pos.left
			MouseXY[1] = y; 	//pos.top;
			return MouseXY;
		}
		
		function setWindowSize(e){
			var xy = Array();
			xy = document.onmousedown =  getMouseXY;
			var mouseX = x;		// mouse.pos.left
			var mouseY = y;		// mouse.pos.top
			xy = getWindowInnerSize();
			x = xy[0];			//	window.inner.width
			y = xy[1];			//	window.inner.height
			
			if(mouseX - divwidth < 0){
				//window.alert('weite falsch  < 0');
				xy[0]= mouseX + 15;
			}else if(divwidth + mouseX > x){
				//window.alert('weite falsch > x: ' + x + ': ' + (divwidth + mouseX));
				xy[0] = mouseX - divwidth;
			}else {
				xy[0] = mouseX + 15;
			}
			
			if(mouseY - divheight < 0){
				//window.alert('hoehe falsch < 0');
				xy[1]= mouseY;
			}else if(divheight + mouseY > y){
				//window.alert('hoehe falsch > y');
				xy[1] = mouseY - divheight;
			}else {
				xy[1] = mouseY - divheight;
			}
			//window.alert(xy[0] + ' x ' + xy[1]);
			return xy;
		}
		/*
		* Diese Funktion ermittelt die aktuelle Fenstergroesse
		* gibt xy als array zurueck: [0] => width, [1] => height
		*/			
		function getWindowInnerSize(){
			var x,y;
			if (self.innerHeight) // all except Explorer
			{
				x = self.innerWidth;
				y = self.innerHeight;
			}
			else if (document.documentElement && document.documentElement.clientHeight)
				// Explorer 6 Strict Mode
			{
				x = document.documentElement.clientWidth;
				y = document.documentElement.clientHeight;
			}
			else if (document.body) // other Explorers
			{
				x = document.body.clientWidth;
				y = document.body.clientHeight;
			}
			var xy = Array();
			xy[0] = x;
			xy[1] = y;
			xy[0]= parseInt(xy[0]);
			xy[1] = parseInt(xy[1]);
			return xy;
		}
		
		/*
		* ueberwacht die mousebewegung
		* @param feeds = elementid 
		* wenn sich die Fenstergroesse aendert wird checkWindowSize aufgerufen,
		* um den aktuellen style.visibility vom element zu erfahren und 
		* das element zu versetzen
		*/
		function checkWindowSizeLoop(feeds) {
			// MSIE
			if( document.attachEvent ) {
				document.attachEvent("onmousemove", checkWindowSize(feeds));
			}
			// Gecko browsers
			else if(document.addEventListener) {
				document.addEventListener("mousemove", checkWindowSize(feeds), false);
			}
			checkWindowSizeLoop(feeds);
		}
		
		/*
		* ermittelt die style.visibilty eines elements
		* und setzt es an die gewuenschte position
		*/
		function checkWindowSize(feeds){
			if (document.getElementById) {		// DOM alle neuen Browser
				isVisible = document.getElementById(feeds).style.visibility;
			}
			if (document.all) {					// IE < 5
				isVisible = document.all[feeds].style.visibility;
			}
			if (document.layers) {				// NN 4
				isVisible = document.layers[feeds].visibility;
			}
			showfeeds(feeds, isVisible, null, null);
		}
		
		/*
		* setzt die position eines elements im fenster und
		* blendet das element ein oder aus
		*/
		function setVisiblePos(feeds, leftpos, toppos, isVisible){
			
			if (document.getElementById) {		// DOM alle neuen Browser
				document.getElementById(feeds).style.visibility = isVisible;
				document.getElementById(feeds).style.left = leftpos + "px";
				document.getElementById(feeds).style.top = toppos + "px";
			}
			if (document.all) {					// IE < 5
				document.all[feeds].style.visibility = isVisible;
				document.all[feeds].style.left = leftpos + "px";
				document.all[feeds].style.top = toppos + "px";
			}
			if (document.layers) {				// NN 4
				document.layers[feeds].visibility = isVisible;
				document.layers[feeds].style.left = leftpos + "px";
				document.layers[feeds].style.top = toppos + "px";
			}
		}
		
		/*
		* blendet ein element im Fenster ein oder aus
		* @param feeds = elementid
		* @param isVisible = hidden oder visible
		* @param leftpos = ausrichtung des elements von links
		+ @param toppos = ausrichtung des elements von oben
		*/
		function showfeeds(feeds, isVisible, leftpos, toppos) {
			if(leftpos == null || toppos == null){
				var xy = Array();
				xy = setWindowSize();
				leftpos = xy[0];
				toppos = xy[1];
			}
			setVisiblePos(feeds, leftpos, toppos, isVisible);
		}
		
		function closeontime(feeds, dauer){
			setTimeout("hidefeeds('" + feeds + "');", dauer);
		}
		/*
		* wechselt ein Bild mit einem anderen aus
		* @param anker = img (this)
		/ @param neu = name des neuen Bildes
		*/
		function changeImg(anker, neu){      
			var temp = anker.src    
			anker.src = "http://mm.777partner.com/grafik/" + neu
			neu.src = temp
		}
		
		function updatehelpTip(e) {
		
			x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
			y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
			if (helpTip != null) {
				var xy = Array();
				xy = getWindowInnerSize();
				windowwidth = xy[0];
				windowheight = xy[1];
				if(x + 200 > windowwidth){ x = x - 270; }
				helpTip.style.left = (x + 20) + "px";
				helpTip.style.top 	= (y + 20) + "px";
			}
		}
		function showHelp(id) {
			helpTip = document.getElementById(id);
			helpTip.style.display = "block";
		}
	
		function hideHelp(id) {
			document.getElementById(id).style.display = "none";
		}
		
		// position des DIV-FEEDS in die mitte innerhalb des Fensters ermitteln
		var xy = Array();
		var divwidth = 210;
		var divheight = 250;
		leftpos = 280;
		toppos = 80;
		
		// helptip box left und top aktualisieren
		helpTip = null;
		document.onmousemove = updatehelpTip;
		document.write('<style>');
		document.write('.feeds{');
		document.write('visibility:hidden;');
		document.write('border:1px solid #CCCCFF;');
		document.write('position: absolute;top: ' + toppos + 'px;');
		document.write('left: ' + leftpos + 'px;background-color: #CCCCFF;');		
		document.write('width: ' + divwidth + 'px;height: '+ divheight + 'px;');
		document.write('}');
		document.write('.feeds#feeds{');
		document.write('background-color:transparent;');
		document.write('margin:0px;padding:0px;padding-top:2px;');
		document.write('text-align:center;vertical-align:middle:');
		document.write('}');
		
		document.write('.feeds table#tablefeeds{');
		document.write('width:208px; color:#FFFFFF;font-size:11px;');
		document.write('font-family: arial;height:248px;');
		document.write('border:1px solid grey;margin:2px;background-color:transparent;margin:0px;padding:0px;}');
		
		document.write('.feeds th{');
		document.write('color:#000000;');
		document.write('width:192px;height:11px;');
		document.write('text-align: center;font-size: 11px;border:0px;');
		document.write('font-family: arial;border-bottom:1px solid #CCCCFF;');
		document.write('text-align:center;');
		document.write('padding-left: 2px;padding-right:2px;');
		document.write('background-color:#ADADB4;vertical-align:middle;');
		document.write('}');
		
		document.write('.feeds th#titelleiste{');
		document.write('color:#000000;width:192px;');
		document.write('}');
		
		document.write('.feeds th#close{');
		document.write('width:10px;padding:2px;text-align:right;');
		document.write('}');
		
		document.write('.feeds img#close{');
		document.write('border:0px;padding:0px;margin:0px;width:10px;height:10px;}');
		
		document.write('.feeds img#feed{');
		document.write('padding:0px;margin:0px;width:51px;height:15px;border:0px solid #FFFFFF;}');
		
		document.write('.feeds td{font-size:11px;color: #FFFFFF;font-family: arial;');
		document.write('margin:0px;padding:0px;font-size:11px;text-align: left;');
		document.write('background-color:#990000;padding-right: 3px;}');			
		
		document.write('.feeds td#auswahl{');
		document.write('border:0px;background-color:#990000;text-align:center;height:40px;');
		document.write('}');
		
		document.write('.feeds td#tooltip{');
		document.write('cursor: help;width:50px;border:0px;background-color:#990000;');
		document.write('}');
		
		document.write('.feeds span{');
		document.write('font-size:11px;');
		document.write('background-color:#990000;');
		document.write('color:#FFFFFF;font-family:arial;}');
		
		document.write('.feeds div{');
		document.write('width: 100%;');
		document.write('height: 185px;');
		document.write('overflow: auto;');
		document.write('color:#FFFFFF;');
		document.write('border:0px solid #FF0000;');
		document.write('}');
		
		document.write('div#help{position: absolute;width:250px;display: none;');
		document.write('background-color: #CCFFFF;');
		document.write('border:1px solid #000000;padding: 2px;');
		document.write('color: #000000;font-size:11px;font-family:arial;');
		document.write('text-align:left;}');
		
		document.write('.feeds table#feedlist{');
		document.write('width:100%;color:#FFFFFF;font-size:11px;');
		document.write('font-family: arial;');
		document.write('border:0px solid grey;');
		document.write('padding:0px;margin:0px;background-color:#990000');
		document.write('}');
		
		document.write('.feeds td#feedlist{');
		document.write('color:#FFFFFF;text-align:center;');
		document.write('border:0px;');
		document.write('background-color:#990000');
		document.write('}');
		
		document.write('.feeds a{color:#FFFFFF;');
		document.write('background-color:transparent;margin:0px;border:0px;padding:0px;font-size:11;}');
		
		document.write('img#pic {');
		document.write('cursor:pointer;border:0px;width:32px;height:32px;}');
		
		document.write('span#pic {');
		document.write('background-color:transparent;padding:0px;margin:0px;cursor:pointer;}');
		document.write('</style>');
		/*
		* ab hier erfolgt die Ausgabe des htmlcodes
		*/
		var ausgabe = '';
		//ausgabe += '<body onresize="checkWindowSizeLoop(\'feeds\')">';
		ausgabe += '<body>';
		ausgabe += '<div id="feeds" class="feeds">';
		ausgabe += '<table id="tablefeeds" cellpadding="0" cellspacing="0" border="0">';
		ausgabe += '<tr>';
		ausgabe += '<th id="titelleiste">777livecams RSS Feeds</th>';
		ausgabe += '<th id="close" title="close window">';
		ausgabe += '<img src="http://mm.777partner.com/grafik/close_d.gif" onmouseover="changeImg(this, \'close_o.gif\');" onmouseout="changeImg(this, \'close_d.gif\');" id="close" onclick="showfeeds(\'feeds\', \'hidden\', null, null);" alt="Fenster schliessen"/>';
		ausgabe += '</th>';
		ausgabe += '</tr>';
		ausgabe += '<tr>';
		ausgabe += '<td colspan="2" style="border-bottom:1px solid silver;">';
		ausgabe += '<table style="margin:0px;width:100%;" cellpadding="0" cellspacing="0" border="0">';
		ausgabe += '<tr>';
		ausgabe += '<td id="auswahl">';
		ausgabe += 'Choose your RSS';
		ausgabe += '</td>';
		ausgabe += '<td id="tooltip">';
		ausgabe += '<span onmouseover="showHelp(\'help\');" onmouseout="hideHelp(\'help\');">help</span>';
		ausgabe += '</td>';
		ausgabe += '</tr>';
		ausgabe += '</table>';
		ausgabe += '</tr>';
		ausgabe += '<tr>';
		ausgabe += '<td colspan="2" style="border:0px;background-color:#990000;padding:2px;">';
		ausgabe += '<div>';
		ausgabe += '<table id="feedlist" cellpadding="2" cellspacing="2" border="0">';
		document.write(ausgabe);
						document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from all online shows\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from all online shows\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from all online shows\">');
document.write('all online shows');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=1&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from girl shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from girl shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=1&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from girl shows(online)\">');
document.write('girl shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=2&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from pair shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from pair shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=2&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from pair shows(online)\">');
document.write('pair shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=3&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from livedate shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from livedate shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=3&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from livedate shows(online)\">');
document.write('livedate shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=4&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from fetish shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from fetish shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=4&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from fetish shows(online)\">');
document.write('fetish shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=5&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from lesbian shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from lesbian shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=5&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from lesbian shows(online)\">');
document.write('lesbian shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=6&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from latin Shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from latin Shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=6&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from latin Shows(online)\">');
document.write('latin Shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=7&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from gay shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from gay shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=7&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from gay shows(online)\">');
document.write('gay shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=8&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from boy shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from boy shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=8&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from boy shows(online)\">');
document.write('boy shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=9&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from bi shows(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from bi shows(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=9&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from bi shows(online)\">');
document.write('bi shows(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=10&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from swinger(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from swinger(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=10&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from swinger(online)\">');
document.write('swinger(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=11&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from TV/TS(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from TV/TS(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=11&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from TV/TS(online)\">');
document.write('TV/TS(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=13&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from asian(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from asian(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=13&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from asian(online)\">');
document.write('asian(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=14&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from with audio(online)\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from with audio(online)\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=14&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from with audio(online)\">');
document.write('with audio(online)');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=15&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from ebony\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from ebony\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=15&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from ebony\">');
document.write('ebony');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td id="feedlist">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=16&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from mature\">');
document.write('<img src=\"http://mm.777partner.com/t7lc/img/rssfeed/rssfeed.03.gif\" border=\"0\"');
document.write(' alt=\"RSS from mature\"');
document.write(' id=\"feed\">');
document.write('</a>');
document.write('</td>');
document.write('<td style=\"width:200px;padding-left:5px;\">');
document.write('<a href=\"http://mm.777partner.com/?lid=35&id=A66771&cat=16&feedcount=10&read=1\"');
document.write(' target=\"_blank\"');
document.write(' title=\"RSS from mature\">');
document.write('mature');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
		ausgabe = '</table>';
		ausgabe += '</div>';
		ausgabe += '</td>';
		ausgabe += '</tr>';
		ausgabe += '</table>';
		ausgabe += '</div>';
		ausgabe += '<div id="help">';
		ausgabe += 'With RSS you get actual information,<br>';
		ausgabe += 'You can choose reading RSS in<br>';
		ausgabe += 'your browser or with a RSS reader<br>';
		ausgabe += 'RSS are updating themselves automatically<br>';
		ausgabe += 'it can always be removed<br>';
		ausgabe += '<hr style="height:1px;">';
		ausgabe += '<span style="background-color:transparent;color:#FF0000">Make your choice!</span>';
		ausgabe += '</div>';
		ausgabe += '<span id="pic" onClick="showfeeds(\'feeds\', \'visible\', null, null);"  title="Show RSS selection">';
		ausgabe += '<img id="pic" src="http://mm.777partner.com/t7lc/img/rssfeed/rss_file_info_32.png" alt="Show RSS selection" />';
		ausgabe += '</span>';
		document.write(ausgabe);
							
	