<!--


function openCenteredWindow(url, height, width, name, parms) {


	var left = Math.floor( (screen.width - width) / 2);
	var top = Math.floor( (screen.height - height) / 2);
	var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
	if (parms) { winParms += "," + parms; }
	//alert(winParms);
	var win = window.open(url, name, winParms);
	if (win)
	{
		if (parseInt(navigator.appVersion) >= 4)
		{
			if (win != null) {
				win.window.focus();
			}
		}
		return true;
	}
	else
	{
		return false;
	}
	

}


function mailingAdd(theaddress)
{
	temp = openCenteredWindow("mailinglist.php?action=subscribe&email=" + theaddress, 100, 250, "tourWin", 'scrollbars=no');
	return temp;	
}
function mailingRemove(theaddress)
{
	temp = openCenteredWindow("mailinglist.php?action=unsubscribe&email=" + theaddress, 100, 250, "tourWin", 'scrollbars=no');
	return temp;	
}
function showVideoWin()
{
	temp = openCenteredWindow("video_index.html", 700, 700, "videoWin", "scrollbars=no,resizable=no");
	return temp;	
}
function showPhotoWin()
{
	temp = openCenteredWindow("http://www.marikejager.com/photos/", 700, 700, "photoWin", 'scrollbars=yes');
	return temp;	

}


// -->
