/*
//TODO: delete
	function popUp(URL) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=200,height=200,left = 300,top = 200');");
	}
*/
	function getPopupLeft(WindowWidth) {
		return parseInt((screen.width / 2)-(WindowWidth / 2));
	}
	
	function getPopupTop(WindowHeight) {
		return parseInt((screen.height / 2)-(WindowHeight / 2));
	}
	

	function openSlideShow() {
		window.open('show.html', 'w', 'toolbar=no,scrollbars=no,statusbar=no,menubar=no,resizable=yes,width=620,height=675,left=' + getPopupLeft(620) + ',top=' + getPopupTop(675));
	}
	
	function openAlbum() {
		window.open('', 'albumwin', 'toolbar=no,scrollbars=no,statusbar=no,menubar=no,resizable=yes,width=500,height=575,left=' + getPopupLeft(600) + ',top=' + getPopupTop(500));
		return true;
	}

	function openWindow(height, width, url) {
		window.open(url, 'wi', "toolbar=no,scrollbars=no,statusbar=no,menubar=no,resizable=yes,width=" + width + ",height=" + height + ",left=" + getPopupLeft(width) + ",top=" + getPopupTop(height));
	}
	
	
