var newWindow = null;
function makeNewWindow(fname,w,h) {
	newWindow = window.open(fname,"","scrollbars=yes,resizable=yes,width=" + w + ",height=" + h )
	newWindow.moveTo(115,5);
	newWindow.focus();
}
