// 10/3/2006: Add popWinBig, set popWin return value [mr]

function popWin( url, name, width, height, scroller ) {
	var outStr = 'height=' + height + ',width=' + width;
	if (scroller != 'true') {
		outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,left=10,top=10';
	}
	else {
		outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars,resizable=yes,left=10,top=10';
	}
	return window.open(url, name, outStr);
}

function popWinResize( url ) {
    popWin( url, 'photo', 100, 100, 'false');
}

// Note: Largest image is 712 x 450; most are 600 x 450.
function popWinBig( url ) {
    popWin( url, 'photo', 750, 600, 'false').focus();
}
