function openWindow(url, name) 
{
	var height=screen.height - 65;
	var width=screen.width - 11;
	var parms='toolbar=0,location=0,directories=0,menubar=0,scrollbars=1,resizable=1';

   var winParms = "top=0,left=0,height=" + height + ",width=" + width;
   //url = '../' + url;
   if (parms) { winParms += "," + parms; }
   var win = window.open(url, name, winParms);
   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function openCenteredWindow(url, height, width, name) 
{
   var parms='toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,resizable=1';
   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; }
   var win = window.open(url, name, winParms);
   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function showPhoto(photosrc, photoid)
{
	document.getElementById(photoid).src = photosrc;
}
