function newWin(theUrl,height) {	var theSetting = 'width=580,height=' + height + ',resizable=1';	theWindow = window.open(theUrl, 'new_win', theSetting);	theWindow.focus();}