function openJukebox() {

	var searchobj = document.getElementById('jukeboxicon');

	var middlev = window.screenLeft + 165 ;
	var middleh = window.screenTop + 420 ; 
	
 	window.open('http://www.biggnet.net/media/music/jukebox.html','jukebox','channelmode=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,width=270,height=120,left='+middlev+',top='+middleh);
  }

window.onload = function() {

	document.getElementById('jukeboxicon').onclick = function() {openJukebox();} 
	
}

function expand(theDiv,total) {	
	if (document.getElementById('cat'+theDiv).className != "cat-active") {
	numT = total + 1;
		for (var i = 1; i < numT; i++){	
			if( theDiv == i ){
				document.getElementById('cat'+theDiv).className="cat-active";
				document.getElementById('cat'+i).style.display = 'block';
				// new Effect.BlindDown('cat'+i, {duration:0.3});
			} else {
				if (document.getElementById('cat'+i).className == "cat-active") {
					document.getElementById('cat'+i).className="cat-inline";
					document.getElementById('cat'+i).style.display = 'none';
					// new Effect.BlindUp('cat'+i, {duration:0.3});
				}
			}
		}
	}
}
