Strange Frequencies Channel - Free

Free


A two hours program with selected netaudio, from selected netlabels and musicians.


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <link rel="shortcut icon" href="/waves/zwaves/style/favicon.ico"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> Strange Frequencies Channel - Artists </title> <link rel="alternate" type="application/rss+xml" title="Jinzora Most Played" href="rss.php?type=most-played"> </head> <script type="text/javascript" src="/waves/zwaves/lib/jinzora.js"></script><script type="text/javascript" src="/waves/zwaves/lib/overlib.js"></script><div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div> <div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div> <link rel="stylesheet" title="steel" type="text/css" media="screen" href="style/steel/default.php"> <table width="100%" cellspacing="0" cellpadding="0" align="left" border="0"> <tr> <td><script> var playback = 'stream'; var streamto = 'stream'; function playbackLink(url) { if (playback == 'stream') { return true; //window.open(url,'_self'); } else if (playback == 'jukebox') { ajax_direct_call(url,sendJukeboxRequest_cb); } return false; } function updatePlaylist_cb(a) { alert('Playlist updated.'); obj = document.getElementById("playlistDisplay"); if (obj != false) { obj.innerHTML = a; } } function submitPlaybackForm(button,url) { form = button.form; document.pressedVal = null; if (button.type == "button" || button.type == "submit" || button.type == "image") { document.pressed = button.name; document.pressedVal = button.value; } else { document.pressed = null; } if (button.name == 'addList' || button.name == 'addPath') { ajax_submit_form(form,url,updatePlaylist_cb); return false; } if (playback == 'stream') { return true; } else if (playback == 'jukebox') { ajax_submit_form(form,url,sendJukeboxRequest_cb); return false; } } function searchKeywords(f,url) { var str = f.search_query.value; str = str.toUpperCase(); var key1 = '@radio'; key1 = key1.toUpperCase(); var key2 = '@play'; key2 = key2.toUpperCase(); var key3 = '@random'; key3 = key3.toUpperCase(); if (!(str.match(key1) || str.match(key2) || str.match(key3))) { f.target='_self'; return true; } if (playback == 'jukebox') { ajax_submit_form(f,url,sendJukeboxRequest_cb); return false; } else { // proceed as usual. return true; } } function maindiv(url) { ajax_direct_call(url,maindiv_cb); callBreadcrumbs(); //callAlbumAlbumBlock(); } function maindiv_cb(a) { document.getElementById("mainDiv").innerHTML = a; } function currentInfo(mysid, update) { x_returnCurrentInfo(mysid, update, currentInfo_cb); } function currentInfo_cb(a) { if (a != "") { document.getElementById("currentInfo").innerHTML = a; } } function nothing(a) {} function setResample(v) { x_setResample(v,nothing); return false; } function alert_cb(a) { alert(a); } </script> <script> // remote scripting library // (c) copyright 2005 modernmethod, inc var sajax_debug_mode = false; var sajax_request_type = "GET"; function sajax_debug(text) { if (sajax_debug_mode) alert("RSD: " + text) } function sajax_init_object() { sajax_debug("sajax_init_object() called..") var A; try { A=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { A=new ActiveXObject("Microsoft.XMLHTTP"); } catch (oc) { A=null; } } if(!A && typeof XMLHttpRequest != "undefined") A = new XMLHttpRequest(); if (!A) sajax_debug("Could not create connection object."); return A; } function sajax_do_call(func_name, args, directurl) { var i, x, n; var uri; var post_data; uri = "ajax_request.php?frontend=netjuke&theme=steel&language=english"; if (sajax_request_type == "GET") { if (uri.indexOf("?") == -1) uri = uri + "?rs=" + escape(func_name); else uri = uri + "&rs=" + escape(func_name); for (i = 0; i < args.length-1; i++) uri = uri + "&rsargs[]=" + escape(args[i]); uri = uri + "&rsrnd=" + new Date().getTime(); post_data = null; } else { post_data = "rs=" + escape(func_name); for (i = 0; i < args.length-1; i++) post_data = post_data + "&rsargs[]=" + escape(args[i]); } if (directurl != false) { uri = directurl; if (args.length == 2) { post_data = args[0]; } else { post_data = null; } } x = sajax_init_object(); x.open(sajax_request_type, uri, true); if (sajax_request_type == "POST") { x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1"); x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); } x.onreadystatechange = function() { if (x.readyState != 4) return; sajax_debug("received " + x.responseText); var status; var data; if (directurl != false) { status = "+"; data = x.responseText; } else { status = x.responseText.charAt(0); data = x.responseText.substring(2); } if (status == "-") alert("Error: " + data); else args[args.length-1](data); } x.send(post_data); sajax_debug(func_name + " uri = " + uri + "/post = " + post_data); sajax_debug(func_name + " waiting.."); delete x; } function ajax_direct_call(url, cb_function) { func = Array(1); func[0] = cb_function; sajax_do_call(false,func,url); } function ajax_submit_form(form, url, cb_function) { sajax_request_type = "POST"; func = Array(2); func[1] = cb_function; func[0] = getFormValues(form); sajax_do_call(false,func,url); } function getFormValues(fobj) { var str = ""; var valueArr = null; var val = ""; var cmd = ""; for(var i = 0;i < fobj.elements.length;i++) { switch(fobj.elements[i].type) { case "checkbox": if (fobj.elements[i].checked) { str += escape(fobj.elements[i].name) + "=" + escape(fobj.elements[i].value) + "&"; } break; case "submit": case "button": case "image": if (document.pressed == fobj.elements[i].name) { str += escape(fobj.elements[i].name) + "=" + escape(fobj.elements[i].value) + "&"; document.pressed = null; } break; case "text": case "hidden": str += escape(fobj.elements[i].name) + "=" + escape(fobj.elements[i].value) + "&"; break; case "select-one": str += escape(fobj.elements[i].name) + "=" + escape(fobj.elements[i].options[fobj.elements[i].selectedIndex].value) + "&"; break; case "select-multiple": for (var j = 0; j < fobj.elements[i].options.length; j++) { if (fobj.elements[i].options[j].selected) { str += escape(fobj.elements[i].name) + "=" + escape(fobj.elements[i].options[j].value) + "&"; } } break; } } if (document.pressed != null) { if (null != document.pressedVal) { str += escape(document.pressed) + "=" + escape(document.pressedVal) + "&"; } else { str += escape(document.pressed) + "=t&"; } } str = str.substr(0,(str.length - 1)); return str; } // wrapper for returnNowStreaming function x_returnNowStreaming() { sajax_do_call("returnNowStreaming", x_returnNowStreaming.arguments, false); } // wrapper for returnWhoisWhere function x_returnWhoisWhere() { sajax_do_call("returnWhoisWhere", x_returnWhoisWhere.arguments, false); } // wrapper for returnBreadcrumbs function x_returnBreadcrumbs() { sajax_do_call("returnBreadcrumbs", x_returnBreadcrumbs.arguments, false); } // wrapper for returnAlbumAlbumBlock function x_returnAlbumAlbumBlock() { sajax_do_call("returnAlbumAlbumBlock", x_returnAlbumAlbumBlock.arguments, false); } // wrapper for returnCurrentInfo function x_returnCurrentInfo() { sajax_do_call("returnCurrentInfo", x_returnCurrentInfo.arguments, false); } // wrapper for setResample function x_setResample() { sajax_do_call("setResample", x_setResample.arguments, false); } // wrapper for setLyrics function x_setLyrics() { sajax_do_call("setLyrics", x_setLyrics.arguments, false); } </script> <a name="pageTop"></a> <table width="100%" cellpadding="5" cellspacing="0" border="0"> <tr> <td> <br> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td align="center" valign="top"> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <tr> <td class="jz_block_td" colspan="3" width="100%" nowrap> <strong>Library</strong> </td> </tr> <tr> <td class="jz_nj_block_body" align="center" width="1%" nowrap> 264 Tracks </td> <td class="jz_nj_block_body" align="center" width="1%" nowrap> 43 Artists </td> <td class="jz_nj_block_body" align="center" width="1%" nowrap> 0:23:17:12 </td> </tr> <tr> <td class="jz_nj_block_body" align="center" width="1%" nowrap> 50 Albums </td> <td class="jz_nj_block_body" align="center" width="1%" nowrap> FREE </td> <td class="jz_nj_block_body" align="center" width="1%" nowrap> 2.38 GB </td> </tr> </table> </td> <td align="center">&nbsp; &nbsp;</td> <td align="center" valign="top"> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <tr> <td class="jz_block_td"> <strong>ARTISTS A-Z</strong> - <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=%2A&ext.html">All</a> </td> </tr> <tr> <td class="jz_nj_block_body" align="center"> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=A&ext.html">A</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=B&ext.html">B</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=C&ext.html">C</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=D&ext.html">D</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=E&ext.html">E</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=F&ext.html">F</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=G&ext.html">G</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=H&ext.html">H</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=I&ext.html">I</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=J&ext.html">J</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=K&ext.html">K</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=L&ext.html">L</a> <br><a href="/waves/zwaves/index.php?jz_level=1&jz_letter=M&ext.html">M</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=N&ext.html">N</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=O&ext.html">O</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=P&ext.html">P</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=Q&ext.html">Q</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=R&ext.html">R</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=S&ext.html">S</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=T&ext.html">T</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=U&ext.html">U</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=V&ext.html">V</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=W&ext.html">W</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=X&ext.html">X</a> <br><a href="/waves/zwaves/index.php?jz_level=1&jz_letter=Y&ext.html">Y</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=Z&ext.html">Z</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=1&ext.html">1</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=2&ext.html">2</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=3&ext.html">3</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=4&ext.html">4</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=5&ext.html">5</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=6&ext.html">6</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=7&ext.html">7</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=8&ext.html">8</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=9&ext.html">9</a> <a href="/waves/zwaves/index.php?jz_level=1&jz_letter=%2A&ext.html">0</a>&nbsp; </td> </tr> </table> </td> <td align="center">&nbsp; &nbsp;</td> <td align="center" valign="top"> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <tr> <td class="jz_block_td"> <strong>ALBUMS A-Z</strong> - <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=%2A&ext.html">All</a> </td> </tr> <tr> <td class="jz_nj_block_body" align="center"> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=A&ext.html">A</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=B&ext.html">B</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=C&ext.html">C</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=D&ext.html">D</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=E&ext.html">E</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=F&ext.html">F</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=G&ext.html">G</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=H&ext.html">H</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=I&ext.html">I</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=J&ext.html">J</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=K&ext.html">K</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=L&ext.html">L</a> <br><a href="/waves/zwaves/index.php?jz_level=2&jz_letter=M&ext.html">M</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=N&ext.html">N</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=O&ext.html">O</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=P&ext.html">P</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=Q&ext.html">Q</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=R&ext.html">R</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=S&ext.html">S</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=T&ext.html">T</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=U&ext.html">U</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=V&ext.html">V</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=W&ext.html">W</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=X&ext.html">X</a> <br><a href="/waves/zwaves/index.php?jz_level=2&jz_letter=Y&ext.html">Y</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=Z&ext.html">Z</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=1&ext.html">1</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=2&ext.html">2</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=3&ext.html">3</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=4&ext.html">4</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=5&ext.html">5</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=6&ext.html">6</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=7&ext.html">7</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=8&ext.html">8</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=9&ext.html">9</a> <a href="/waves/zwaves/index.php?jz_level=2&jz_letter=0&ext.html">0</a>&nbsp; </td> </tr> </table> </td> </tr> </table> <br> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <tr> <td align="center" class="jz_block_td"> </td> </tr> </table></td> </tr> </table> <table width="100%" cellpadding="5" cellspacing="0" border="0"> <tr> <td align="center" valign="top"> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <tr> <td class="jz_block_td" colspan="3"> <strong>ALL ARTISTS (43)</strong> </td> </tr> <tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=1DEMIdeGT2&ext.html" title="Browse: 1DEMIdeGT2" alt="Browse: 1DEMIdeGT2">1DEMIdeGT2</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Alrucini&ext.html" title="Browse: Alrucini" alt="Browse: Alrucini">Alrucini</a> (4)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Anton+Mobin+%26+Th-Th&ext.html" title="Browse: Anton Mobin & Th-Th" alt="Browse: Anton Mobin & Th-Th">Anton Mobin & T...</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Bad+Slap+Org&ext.html" title="Browse: Bad Slap Org" alt="Browse: Bad Slap Org">Bad Slap Org</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Buben&ext.html" title="Browse: Buben" alt="Browse: Buben">Buben</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=D%27incise&ext.html" title="Browse: D'incise" alt="Browse: D'incise">D'incise</a> (2)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=DEKRYPTON+JOEL&ext.html" title="Browse: DEKRYPTON JOEL" alt="Browse: DEKRYPTON JOEL">DEKRYPTON JOEL</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Dies&ext.html" title="Browse: Dies" alt="Browse: Dies">Dies</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Doulance&ext.html" title="Browse: Doulance" alt="Browse: Doulance">Doulance</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=EXurban&ext.html" title="Browse: EXurban" alt="Browse: EXurban">EXurban</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Faustino+Goyena&ext.html" title="Browse: Faustino Goyena" alt="Browse: Faustino Goyena">Faustino Goyena</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Giscard+le+Survivant&ext.html" title="Browse: Giscard le Survivant" alt="Browse: Giscard le Survivant">Giscard le Surv...</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Hangar+hagard&ext.html" title="Browse: Hangar hagard" alt="Browse: Hangar hagard">Hangar hagard</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Jerome+Pergolesi&ext.html" title="Browse: Jerome Pergolesi" alt="Browse: Jerome Pergolesi">Jerome Pergoles...</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=JKP&ext.html" title="Browse: JKP" alt="Browse: JKP">JKP</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Juan+Antonio+Nieto+a.k.a.+Pangea&ext.html" title="Browse: Juan Antonio Nieto a.k.a. Pangea" alt="Browse: Juan Antonio Nieto a.k.a. Pangea">Juan Antonio Ni...</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Kaiza+sauce&ext.html" title="Browse: Kaiza sauce" alt="Browse: Kaiza sauce">Kaiza sauce</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Lain&ext.html" title="Browse: Lain" alt="Browse: Lain">Lain</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Larm&ext.html" title="Browse: Larm" alt="Browse: Larm">Larm</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Le+Mal+d%27archive&ext.html" title="Browse: Le Mal d'archive" alt="Browse: Le Mal d'archive">Le Mal d'archiv...</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Le+Vrai+Bernardo&ext.html" title="Browse: Le Vrai Bernardo" alt="Browse: Le Vrai Bernardo">Le Vrai Bernard...</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Lezet&ext.html" title="Browse: Lezet" alt="Browse: Lezet">Lezet</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Lu%26iacute%3Bs+Antero+%28Out+Level%29&ext.html" title="Browse: Lu&iacute;s Antero (Out Level)" alt="Browse: Lu&iacute;s Antero (Out Level)">Lu&iacute;s Ant...</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Maxe&ext.html" title="Browse: Maxe" alt="Browse: Maxe">Maxe</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Minimal+States&ext.html" title="Browse: Minimal States" alt="Browse: Minimal States">Minimal States</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Mixturizer+%2B+Taiko+Oroshi+%2B+Kenji+Siratori&ext.html" title="Browse: Mixturizer + Taiko Oroshi + Kenji Siratori" alt="Browse: Mixturizer + Taiko Oroshi + Kenji Siratori">Mixturizer + Ta...</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Monsieur+Connard&ext.html" title="Browse: Monsieur Connard" alt="Browse: Monsieur Connard">Monsieur Connar...</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Mystahr&ext.html" title="Browse: Mystahr" alt="Browse: Mystahr">Mystahr</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Mystified&ext.html" title="Browse: Mystified" alt="Browse: Mystified">Mystified</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Ombilic&ext.html" title="Browse: Ombilic" alt="Browse: Ombilic">Ombilic</a> (2)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Petal&ext.html" title="Browse: Petal" alt="Browse: Petal">Petal</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Peter+%2B+Barbadrupe&ext.html" title="Browse: Peter + Barbadrupe" alt="Browse: Peter + Barbadrupe">Peter + Barbadr...</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Philippe+Aubry%2C+Jerome+Pergolesi&ext.html" title="Browse: Philippe Aubry, Jerome Pergolesi" alt="Browse: Philippe Aubry, Jerome Pergolesi">Philippe Aubry,...</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Phillip+Wilkerson&ext.html" title="Browse: Phillip Wilkerson" alt="Browse: Phillip Wilkerson">Phillip Wilkers...</a> (2)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Pigeons+%26+Crazy+Porridgemakers&ext.html" title="Browse: Pigeons & Crazy Porridgemakers" alt="Browse: Pigeons & Crazy Porridgemakers">Pigeons & Crazy...</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=PREGUIZZA+%2B+ALRUCINI+%2B+ENGENHO&ext.html" title="Browse: PREGUIZZA + ALRUCINI + ENGENHO" alt="Browse: PREGUIZZA + ALRUCINI + ENGENHO">PREGUIZZA + ALR...</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Retreat&ext.html" title="Browse: Retreat" alt="Browse: Retreat">Retreat</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Shamahan&ext.html" title="Browse: Shamahan" alt="Browse: Shamahan">Shamahan</a> (2)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Spheruleus&ext.html" title="Browse: Spheruleus" alt="Browse: Spheruleus">Spheruleus</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Uiutna&ext.html" title="Browse: Uiutna" alt="Browse: Uiutna">Uiutna</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Unas+rakraganh&ext.html" title="Browse: Unas rakraganh" alt="Browse: Unas rakraganh">Unas rakraganh</a> (1)</td><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Uncle+Bart+comes+to+have+breakfast&ext.html" title="Browse: Uncle Bart comes to have breakfast" alt="Browse: Uncle Bart comes to have breakfast">Uncle Bart come...</a> (1)</td><tr><td class="jz_nj_block_body" nowrap width="33%"> <a href="/waves/zwaves/index.php?jz_path=Witold+bolik&ext.html" title="Browse: Witold bolik" alt="Browse: Witold bolik">Witold bolik</a> (1)</td><td class="jz_nj_block_body">&nbsp;</td><td class="jz_nj_block_body">&nbsp;</td> </table> </td> <br /><br /> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <tr> <td class="jz_block_td"> <strong>LATEST ARTISTS</strong> </td> <td class="jz_block_td"> <strong>LATEST ALBUMS</strong> </td> </tr> <tr> <td class="jz_nj_block_body"> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <td width="25%" valign="top"> <table width="95%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="100%" valign="middle"> <nobr> <nobr> <a title="Lu&iacute;s Antero (Out Level) - Lu&iacute;s Antero (Out Level) (2009)" href="/waves/zwaves/index.php?jz_path=Lu%26iacute%3Bs+Antero+%28Out+Level%29&ext.html">Lu&iacute;s Antero (...</a><br></nobr><nobr> <a title="Kaiza sauce - Kaiza sauce (2006)" href="/waves/zwaves/index.php?jz_path=Kaiza+sauce&ext.html">Kaiza sauce</a><br></nobr><nobr> <a title="Minimal States - Minimal States (2009)" href="/waves/zwaves/index.php?jz_path=Minimal+States&ext.html">Minimal States</a><br></nobr><nobr> <a title="Uncle Bart comes to have breakfast - Uncle Bart comes to have breakfast (2008)" href="/waves/zwaves/index.php?jz_path=Uncle+Bart+comes+to+have+breakfast&ext.html">Uncle Bart comes to ...</a><br></nobr><nobr> <a title="Spheruleus - Spheruleus (2009)" href="/waves/zwaves/index.php?jz_path=Spheruleus&ext.html">Spheruleus</a><br></nobr><nobr> <a title="Faustino Goyena - Faustino Goyena" href="/waves/zwaves/index.php?jz_path=Faustino+Goyena&ext.html">Faustino Goyena</a><br></nobr><nobr> <a title="Retreat - Retreat" href="/waves/zwaves/index.php?jz_path=Retreat&ext.html">Retreat</a><br></nobr><nobr> <a title="Mystified - Mystified" href="/waves/zwaves/index.php?jz_path=Mystified&ext.html">Mystified</a><br></nobr><nobr> <a title="Mystahr - Mystahr" href="/waves/zwaves/index.php?jz_path=Mystahr&ext.html">Mystahr</a><br></nobr><nobr> <a title="Petal - Petal" href="/waves/zwaves/index.php?jz_path=Petal&ext.html">Petal</a><br></nobr><nobr> <a title="Phillip Wilkerson - Phillip Wilkerson (2008)" href="/waves/zwaves/index.php?jz_path=Phillip+Wilkerson&ext.html">Phillip Wilkerson</a><br></nobr><nobr> <a title="PREGUIZZA + ALRUCINI + ENGENHO - PREGUIZZA + ALRUCINI + ENGENHO" href="/waves/zwaves/index.php?jz_path=PREGUIZZA+%2B+ALRUCINI+%2B+ENGENHO&ext.html">PREGUIZZA + ALRUCINI...</a><br></nobr><nobr> <a title="Alrucini - Alrucini (2008)" href="/waves/zwaves/index.php?jz_path=Alrucini&ext.html">Alrucini</a><br></nobr><nobr> <a title="DEKRYPTON JOEL - DEKRYPTON JOEL" href="/waves/zwaves/index.php?jz_path=DEKRYPTON+JOEL&ext.html">DEKRYPTON JOEL</a><br></nobr><nobr> <a title="Ombilic - Ombilic (2008)" href="/waves/zwaves/index.php?jz_path=Ombilic&ext.html">Ombilic</a><br></nobr><nobr> <a title="Bad Slap Org - Bad Slap Org (2008)" href="/waves/zwaves/index.php?jz_path=Bad+Slap+Org&ext.html">Bad Slap Org</a><br></nobr><nobr> <a title="Mixturizer + Taiko Oroshi + Kenji Siratori - Mixturizer + Taiko Oroshi + Kenji Siratori" href="/waves/zwaves/index.php?jz_path=Mixturizer+%2B+Taiko+Oroshi+%2B+Kenji+Siratori&ext.html">Mixturizer + Taiko O...</a><br></nobr><nobr> <a title="Buben - Buben" href="/waves/zwaves/index.php?jz_path=Buben&ext.html">Buben</a><br></nobr><nobr> <a title="EXurban - EXurban (2008)" href="/waves/zwaves/index.php?jz_path=EXurban&ext.html">EXurban</a><br></nobr><nobr> <a title="Lezet - Lezet (2009)" href="/waves/zwaves/index.php?jz_path=Lezet&ext.html">Lezet</a><br></nobr><nobr> <a title="Pigeons & Crazy Porridgemakers - Pigeons & Crazy Porridgemakers (2009)" href="/waves/zwaves/index.php?jz_path=Pigeons+%26+Crazy+Porridgemakers&ext.html">Pigeons & Crazy Porr...</a><br></nobr><nobr> <a title="Juan Antonio Nieto a.k.a. Pangea - Juan Antonio Nieto a.k.a. Pangea (2009)" href="/waves/zwaves/index.php?jz_path=Juan+Antonio+Nieto+a.k.a.+Pangea&ext.html">Juan Antonio Nieto a...</a><br></nobr></nobr> </td> </tr> </table> </td> </table> </td> <td class="jz_nj_block_body"> <table width="100%" cellpadding="3" cellspacing="0" border="0"> <td width="25%" valign="top"> <table width="95%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="100%" valign="middle"> <nobr> <nobr> <a title="Lu&iacute;s Antero (Out Level) - Sound Narratives Vol. 2 (2009)" href="/waves/zwaves/index.php?jz_path=Lu%26iacute%3Bs+Antero+%28Out+Level%29%2FSound+Narratives+Vol.+2&ext.html">Sound Narratives Vol. 2</a><br></nobr><nobr> <a title="Kaiza sauce - Requiem (2006)" href="/waves/zwaves/index.php?jz_path=Kaiza+sauce%2FRequiem&ext.html">Requiem</a><br></nobr><nobr> <a title="Minimal States - Like A Photograph (2009)" href="/waves/zwaves/index.php?jz_path=Minimal+States%2FLike+A+Photograph&ext.html">Like A Photograph</a><br></nobr><nobr> <a title="Uncle Bart comes to have breakfast - Some paradoxes about the human existence and its arquetips (2008)" href="/waves/zwaves/index.php?jz_path=Uncle+Bart+comes+to+have+breakfast%2FSome+paradoxes+about+the+human+existence+and+its+arquetips&ext.html">Some paradoxes about...</a><br></nobr><nobr> <a title="Spheruleus - Tales From the Labyrinth (2009)" href="/waves/zwaves/index.php?jz_path=Spheruleus%2FTales+From+the+Labyrinth&ext.html">Tales From the Labyr...</a><br></nobr><nobr> <a title="D'incise - Morsure Souffle (2009)" href="/waves/zwaves/index.php?jz_path=D%27incise%2FMorsure+Souffle&ext.html">Morsure Souffle</a><br></nobr><nobr> <a title="Faustino Goyena - De Neatins" href="/waves/zwaves/index.php?jz_path=Faustino+Goyena%2FDe+Neatins&ext.html">De Neatins</a><br></nobr><nobr> <a title="Retreat - RTRT" href="/waves/zwaves/index.php?jz_path=Retreat%2FRTRT&ext.html">RTRT</a><br></nobr><nobr> <a title="Mystified - Harsh Mantra" href="/waves/zwaves/index.php?jz_path=Mystified%2FHarsh+Mantra&ext.html">Harsh Mantra</a><br></nobr><nobr> <a title="Petal - And the end was not also" href="/waves/zwaves/index.php?jz_path=Petal%2FAnd+the+end+was+not+also&ext.html">And the end was not ...</a><br></nobr><nobr> <a title="Phillip Wilkerson - Machine Caffeine" href="/waves/zwaves/index.php?jz_path=Phillip+Wilkerson%2FMachine+Caffeine&ext.html">Machine Caffeine</a><br></nobr><nobr> <a title="Phillip Wilkerson - Foregone conclusion (2008)" href="/waves/zwaves/index.php?jz_path=Phillip+Wilkerson%2FForegone+conclusion&ext.html">Foregone conclusion</a><br></nobr><nobr> <a title="PREGUIZZA + ALRUCINI + ENGENHO - Tontura Rural" href="/waves/zwaves/index.php?jz_path=PREGUIZZA+%2B+ALRUCINI+%2B+ENGENHO%2FTontura+Rural&ext.html">Tontura Rural</a><br></nobr><nobr> <a title="Alrucini - Time is a field" href="/waves/zwaves/index.php?jz_path=Alrucini%2FTime+is+a+field&ext.html">Time is a field</a><br></nobr><nobr> <a title="DEKRYPTON JOEL - KRYPTONITE FOR DREAMERS" href="/waves/zwaves/index.php?jz_path=DEKRYPTON+JOEL%2FKRYPTONITE+FOR+DREAMERS&ext.html">KRYPTONITE FOR DREAMERS</a><br></nobr><nobr> <a title="Ombilic - Ad Origine" href="/waves/zwaves/index.php?jz_path=Ombilic%2FAd+Origine&ext.html">Ad Origine</a><br></nobr><nobr> <a title="Alrucini - FAUDA" href="/waves/zwaves/index.php?jz_path=Alrucini%2FFAUDA&ext.html">FAUDA</a><br></nobr><nobr> <a title="Alrucini - Low Intensity Operations" href="/waves/zwaves/index.php?jz_path=Alrucini%2FLow+Intensity+Operations&ext.html">Low Intensity Operat...</a><br></nobr><nobr> <a title="shamahan - Cruel" href="/waves/zwaves/index.php?jz_path=shamahan%2FCruel&ext.html">Cruel</a><br></nobr><nobr> <a title="Ombilic - Organique (2008)" href="/waves/zwaves/index.php?jz_path=Ombilic%2FOrganique&ext.html">Organique</a><br></nobr><nobr> <a title="Alrucini - Dumuzi (2008)" href="/waves/zwaves/index.php?jz_path=Alrucini%2FDumuzi&ext.html">Dumuzi</a><br></nobr></nobr> </td> </tr> </table> </td> </table> </td> </tr> </table> <br /> <br /><br /> <br> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td align="center" valign="top"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td class="jz_block_td" align="center" width="25%"> </td> <td class="jz_block_td" align="center" width="50%"> </td> <td class="jz_block_td" align="center" width="25%"> </td> </tr> </table> </td> </tr> </table></td></tr></table> <a name="pageBottom"></a> <br />