function pu(item)
{
	return popUpWindow('/details/' + item + '.htm', 700, 500);
}

function pu2(item)
{
	return popUpWindow('/extras/' + item + '.html', 600, 500);
}

function popUpWindow(url, w, h)
{
	if (w == null) { w = 350; h = 250; }
	var win = window.open(url, 'hillebergWindow', 'location=no,toolbar=yes,menubar=no,width=' + w + ',height=' + h + ',status=no,scrollbars=yes,resizable=yes,alwaysRaised=yes');
	win.focus();
	return false;
}

var IMG_WIDTH = 752;
var IMG_HEIGHT = 400;
var IMG_DIR = 'Images/gallery/';
function popImg(imgNum) { return popUpWindow(IMG_DIR + imgNum + '.htm', IMG_WIDTH, IMG_HEIGHT); }