// JavaScript Document

<!--

var winTop = (screen.height / 2) - 125;
var winLeft = (screen.width / 2) - 125;

function OpenPhoto(n) {
	var url = 'html/'+n+'.htm?'+Math.random();
	if (typeof newWin=='undefined' || !newWin || newWin.closed) {
		newWin = window.open(url, 'PhotoWin', 'width=700,height=469,top=' + winTop + ',left=' + winLeft);
	} else {
		newWin.close();
		newWin = window.open(url, 'PhotoWin', 'width=700,height=469,resizeable=yes');
		newWin.focus();
	}



}


var winTop = (screen.height / 2) - 125;
var winLeft = (screen.width / 2) - 125;

function OpenPhoto2(n) {
	var url = 'html/'+n+'.htm?'+Math.random();
	if (typeof newWin=='undefined' || !newWin || newWin.closed) {
		newWin = window.open(url, 'PhotoWin', 'width=700,height=525,top=' + winTop + ',left=' + winLeft);
	} else {
		newWin.close();
		newWin = window.open(url, 'PhotoWin', 'width=700,height=525,resizeable=yes');
		newWin.focus();
	}



}


var winTop = (screen.height / 2) - 125;
var winLeft = (screen.width / 2) - 125;

function OpenPhoto3(n) {
	var url = 'html/'+n+'.htm?'+Math.random();
	if (typeof newWin=='undefined' || !newWin || newWin.closed) {
		newWin = window.open(url, 'PhotoWin', 'width=450,height=600,top=' + winTop + ',left=' + winLeft);
	} else {
		newWin.close();
		newWin = window.open(url, 'PhotoWin', 'width=450,height=600,resizeable=yes');
		newWin.focus();
	}



}

-->
