// JavaScript Document
function winCDAPlayer() {
	 var w = 1024, h = 768;
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 362, popH = 193;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open('CDAmusicPlayer.htm','CDAMusicPlayer','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}

function winDistrictMap() {
	 var w = 1024, h = 768;
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 576, popH = 792;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open('districtMap.htm','DistrictMap','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}

function winOurHome() {
	 var w = 1024, h = 768;
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 570, popH = 390;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open('andrewsHome.htm','andrewsHome','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',scrollbars=yes');
}