<!-- 
function newWindow(URL) {
	debug = 0;
	if (debug) { alert("URL: " + URL); }
	textWindow = window.open(URL,"textwin", "menubar=yes,toolbar=no,left=0,top=0,screenX=0, screenY=0, width=650, height=600, scrollbars=yes")
	if (debug) {	alert("window openned"); }
	
//	textWindow.location.reload();
	textWindow.focus()    
}
// -->


