function openWindow(url, width, height) {
	applicationWindow = window.open(url, 'Application', 'width='+width+', height='+height+', left=100, top=200, toolbar=no, status=no, resizable=no, menubar=no, location=no, scrollbars=yes');
	applicationWindow.focus();
}