var newWindow = null;

function openWindow(contentURL) {
	if(!windowName) { var windowName = "gallery"; }
	newWindow = window.open(contentURL,'','fullscreen=yes, scrollbars=yes');
	newWindow.focus()
}

function openOtherWindow(contentURL,windowName,windowWidth,windowHeight) {
		widthHeight = 'HEIGHT=' + windowHeight + ',WIDTH=' + windowWidth;
		newWindow = window.open(contentURL,windowName,widthHeight);
		newWindow.focus()
}

function closeWindow() {
	if (newWindow !=null) {
		newWindow.close();
		newWindow = null;
	}
}

function toggleWindow(contentURL,windowName,windowWidth,windowHeight) {
	if (newWindow == null) {
		widthHeight = 'HEIGHT=' + windowHeight + ',WIDTH=' + windowWidth;
		newWindow = window.open(contentURL,windowName,widthHeight);
		newWindow.focus()
	}
	else {
		newWindow.close();
		newWindow = null;
	}
}