// traumlandpark V1.0 JavaScript SourceCode
// (c) 2006 by tricos media. All rights reserved.
// [TCB] 10.04.2006 16:54:21

var mainProjectDomain="www.traumlandpark.org";
var tspopmywin;

function doPopup(url, width, height)
{
	tspopmywin=window.open(url, 'tsPopup', 'width='+width+',height='+height+',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no');
	tspopmywin.focus();
}


function photoPopup(photo, width, height)
{
	if(tspopmywin) tspopmywin.close();
	doPopup('/photo.php?photo='+photo, width, height);
}


function swapImage(img, src)
{
	document.images[img].src="images/"+src;
}

