<!--
/**********************************************
* Javascript functions for the website
***********************************************/

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

//-->