function openWindow(URL, width, height) {
	var openedWindow = window.open(URL, '', 'width=' + width + ',height=' + height);
	openedWindow.focus();
}
