// Function to open a new window aproximately 300 pixels wide by 200 pixels high
function openWindow ( ) {
	var windowWidth = 300;
	var windowHeight = 300
	var screenWidth = (screen.width - windowWidth) / 2;
	var screenHeight = (screen.height - windowHeight) / 2;

	var popup = window.open("about:blank", "popup", "toolbar=no,scrollbars=no,resizable=no,statusbar=no,width=" + windowWidth + ",height=" + windowHeight + ",top=" + screenHeight + ",left=" + screenWidth);
	popup.focus();

//	For Debugging purposes return the height and width of the screen
//	return screenWidth + " x " + screenHeight;
}
