var subscribeOpened = false;
var slime;
function openSubscribeForm () {
	if (subscribeOpened) {
		if (!slime.closed) slime.close();
	}
	slime = window.open('newsletter.html', 'newsletter', 'directories=no,height=380,width=450,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=100,top=100');
	subscribeOpened = true;
}

var pictureOpened = false;
var dink;

function openPicture (pictureName) {
	if (pictureOpened) {
		if (!dink.closed) dink.close();
	}
	dink = window.open('picture.html?' + pictureName, 'picture', 'directories=no,height=310,width=310,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=100,top=100');
	dink.focus();
	pictureOpened = true;
}

function openPictureBig (pictureName) {
	if (pictureOpened) {
		if (!dink.closed) dink.close();
	}
	dink = window.open('picturebig.html?' + pictureName, 'picture', 'directories=no,height=392,width=520,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=100,top=100');
	dink.focus();
	pictureOpened = true;
}

function openPictureBig2 (pictureName) { //same as openPictureBig, except in portrait orientation
	if (pictureOpened) {
		if (!dink.closed) dink.close();
	}
	dink = window.open('picturebig2.html?' + pictureName, 'picture', 'directories=no,height=520,width=392,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=100,top=100');
	dink.focus();
	pictureOpened = true;
}

function openPhoto (pictureName) { //shows pictures that are 512x384
	if (pictureOpened) {
		if (!dink.closed) dink.close();
	}
	dink = window.open('photo.html?' + pictureName, 'picture', 'directories=no,height=392,width=520,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=100,top=100');
	dink.focus();
	pictureOpened = true;
}

function openPhoto2 (pictureName) { //same as openPhoto, except in portrait orientation
	if (pictureOpened) {
		if (!dink.closed) dink.close();
	}
	dink = window.open('photo2.html?' + pictureName, 'picture', 'directories=no,height=520,width=392,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=100,top=100');
	dink.focus();
	pictureOpened = true;
}


var descOpened = false;
function openDesc (songName) {
	if (descOpened) {
		if (!dink.closed) dink.close();
	}
	dink = window.open('desc_' + songName + '.html', 'desc', 'dependent,directories=no,height=170,width=340,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=200,top=200');
	dink.focus();
	descOpened = true;
}

var showOpened = false;
function openShow (showName) {
	if (showOpened) {
		if (!dink.closed) dink.close();
	}
	dink = window.open('showlist.html#' + showName, 'show', 'dependent,maximize=no,directories=no,height=260,width=310,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,screenX=100,screenY=100,left=200,top=200');
	dink.focus();
	showOpened = true;
}