// All the javascript routines for Which---Side

window.focus();

var songWindow;
var hereWindow;
var thereWindow;

function openSong(){
	songWindow = window.open("http://www.which---side.com/_song/which---side.mp3","song", "width =520, height=120, left=380, top=200, locationbar=0,scrollbars=0, menubar=0");
	songWindow.focus();
}

function openHere() {
	hereWindow = window.open("sideone.html", "here", "width=200,height=300,left=380,top=520,locationbar=0,scrollbars=0,menubar=0,statusbar=0");
	hereWindow.focus();

}

function openThere() {
	thereWindow = window.open("sidetwo.html", "there", "width=200,height=300,left=600,top=520,locatiobarn=0,scrollbars=0,menubar=0,statusbar=0");
	thereWindow.focus();
}

function focusHere() {
	if (!hereWindow.closed && hereWindow.location) {
	hereWindow.focus();
	}
}

function closeHere() {
	hereWindow = window.close("here");
}

function closeThere() {
	thereWindow = window.close("there");
}