function OpenWindow(URL, Name, Width, Height) {
	NewWindow = window.open(URL, Name, 'minimize=0, maximize=0, toolbar=no, scrollbars=yes, location=no, status=no, menubar=no, resizable=no, width='+Width+', height='+Height);
	return true;
}
