function openBiography(artist){
	url = "biography/" + artist;
	subWidth = 550;
	subHeight = 550;
	subWin=window.open(url,"biography","menubar=0,scrollbars=1,toolbar=0,resizable=1,status=1,width=" + subWidth + ",height=" + subHeight);
	subWin.focus();
}

function CloseWin(){
    window.close();
}

function opennews(top){
	url = "news/" + top;
	subWidth = 930;
	subHeight = 670;
	subWin=window.open(url,"news","menubar=0,scrollbars=1,toolbar=0,resizable=1,status=1,width=" + subWidth + ",height=" + subHeight);
	subWin.focus();
}

function opennews2(top){
	url = "news/" + top;
	subWidth = 400;
	subHeight = 640;
	subWin=window.open(url,"news","menubar=0,scrollbars=1,toolbar=0,resizable=1,status=1,width=" + subWidth + ",height=" + subHeight);
	subWin.focus();
}

