var newTextWindow
function makeNewTextWindow(url,w,h){
newTextWindow = window.open(url,"","toolbar=no,width="+w+",height="+h+",scrollbars=no")
if (!newTextWindow.opener) {
newTextWindow.opener = window
}
}
