<!--
/*************************************************************
*   This files contains JavaScript functions for general use.
*************************************************************/

/* function openWindow():
 *	Opens a window with filename, w = width and h = height
 */
function fotoWindow(filename, w, h) {
	// Calculate center coordinates for window display
	var xOffset = (screen.width - w) / 2;
	var yOffset = (screen.height - h) / 2;
	window.open(filename,'FotoWindow','resizable=yes,scrollbars=yes,width='+w+',height='+h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
}

//-->
