function openWin3(url, name, width, height) {
	var openNew = null;

	openNew = window.open(url, name, 'width=' + width + ',height=' + height + ',resize=yes,resizable=yes,scroll=auto,scrollbars=yes,location=no,toolbar=no,menubar=no,status=no,left=20,top=20');
	openNew.focus();
}
