// JavaScript Document
function newWindow(image, width1, height1) {
		loginWindow = window.open(image, "loginWin", "width=" + width1 + ",height=" + height1 + "")
		loginWindow.focus()
	}