var newwindow;

function popSong(song) {
	var argString = 'height=500,width=450,scrollbars=1,left=10,top=10';
	newwindow = window.open('music/'+song+'.html','song',argString);
	if(window.focus) {newwindow.focus()}
}

function popEvent(event) {
	var argString = 'height=400,width=400,scrollbars=1';
	newwindow = window.open('events/'+event+'.html','event',argString);
	if(window.focus) {newwindow.focus()}
}

function popCD() {
	var argString = 'height=560,width=550';
	newwindow = window.open('music/cd.html','cd',argString);
	if(window.focus) {newwindow.focus()}
}