
function newWindow(def,defWidth,defHeight) {
	defHeight = defHeight * 1.1
	defWindow = window.open(def, "defWin", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,")
	defWindow.resizeTo(defWidth,defHeight)
	defWindow.focus()


}
