//Video window close and/or link to Liberty Bell Home
function CloseVideo() {
	if (this.name == 'libertybellvideo') {
		opener.document.location = 'videos.jsp';
		this.close();
	}
	else if (this.name == 'libertybellphoto') {
		//opener.document.location = 'start.htm';
		this.close();
	}
	else {
		this.document.location = 'index.jsp';
	}
}