// Content Swapper
function contentSwap(content,newImg) {
	// Check to see if on a Mac or on a PC (checks to see if the image version of the home page is available or not)
	if(document.getElementById("centerImage")) {
		var centerImage = document.getElementById("centerImage");
		var images = new Array("images/image01.jpg","images/image02.jpg","images/image03.jpg","images/image04.jpg","images/image05.jpg");
		var contentToSwap = document.getElementById('text_right_bottom');
		contentToSwap.innerHTML = content;
		centerImage.src = images[newImg];
	} else {
		var contentToSwap = document.getElementById('text_right_bottom');
		contentToSwap.innerHTML = content;
	}
}


// Audio Player
var popUpPrivacy = 0;
function popUp(URLStr) {
	popUpPrivacy = open(URLStr, 'popUpPrivacy',"height=400,width=300,screenX=0,left=0,screenY=0,top=0,resizable=0,scrollbars=1,status=0,toolbar=0", "privacyWindow");
}

var popUpWin = 0;
function launchRemote(URLStr) {
	if (popUpWin) {
		if (!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, 'popUpWin',"height=50,width=50,screenX=5000,left=5000,screenY=5000,top=5000,channelmode=0,dependent=1,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myWindow");
}

function closeRemote(URLStr) {
	launchRemote('flash/null.htm')
	popUpWin.close();
}
