
function openWindow(sample, w, h){
		newWindow = window.open(sample, "newWin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=" + w + ",height=" + h + "")
		newWindow.focus()
		}

