function SymError()
{
  return true;
}
 
window.onerror = SymError;
 
var SymRealWinOpen = window.open;
 
function SymWinOpen(url, name, attributes)
{
  return (new Object());
}
 
window.open = SymWinOpen;

//
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}

//
		function MM_jumpMenu(selObj,restore){ //v4.0
			if(selObj.selectedIndex == 0) return;
			if(selObj.options[selObj.selectedIndex].className == 'disabled') {
				selObj.options[selObj.selectedIndex].selected = false;
				selObj.selectedIndex= -1;
				return;
				}
			}
		
		function change_page(cat) {
			ajax("includes/functions.playlists.php", "post", ['cat'], [cat], "audio");
			}