function openWindow(windowUrl, windowName) {
	newWindow = window.open(windowUrl, windowName);
	newWindow.focus();
}
