function imageWindow(imgObj)
{
	height = imgObj.height * 3;
	width = imgObj.width * 3;
	if(height > 600 || width > 600){
		height = imgObj.height * 2;
		width = imgObj.width * 2;
	}
	
	loc = imgObj.src;
	id = loc.substring(loc.lastIndexOf("/") + 1, loc.indexOf("_"));
	//alert(loc+", "+height+", "+width);	
	
	if(typeof(newWindow) != "undefined")
		newWindow.close();
	newWindow = window.open('photo.asp?id='+id,'imageWin','height='+height+',width='+width);
	//newWindow.resizeTo(width,height);
	newWindow.focus();
}

function closeWin()
{
	if(typeof(newWindow) != "undefined")
		newWindow.close();
}

function guestbook() {
	newWindow = window.open('guestbook.htm','guestbook','height=350,width=450');
	newWindow.focus();
}
