var chosenAlbum = 0;

function loadAlbum(num){
	var aaa;
	if(chosenAlbum!=num){
		if(chosenAlbum!=0){
			aaa = document.getElementById("albumthm"+chosenAlbum);
			aaa.style.borderColor = "#ffffff";
		}
		
		aaa = document.getElementById("albumthm"+num);
		aaa.style.borderColor = "#ff9000";
		
		chosenAlbum = num;
	}
	
	aaa = document.getElementById("cdload");
	aaa.src = "loadCd.php?uid="+num;
	
	
}

function openw(linki,Wwidth,Wheight)
{
	var	Pwidth=screen.width/2-Wwidth/2;
	var	Pheight=screen.height/2-Wheight/2;
	x=window.open(linki,"window","width="+Wwidth+",height="+Wheight+",scrollbars=no,top="+Pheight+",left="+Pwidth);
	if(x){
		x.focus();
	}
	else{
	}
}


function openRadio(){
	//openw("radio.html",525,180);
	openw("/radio",421,296);
}

function loadAll(){
	var aaa = document.getElementById("bandBioShort");
	aaa.style.display = "none";
	
	aaa = document.getElementById("bandBio");
	aaa.style.display = "";
}
