
function newWindow(fileName,winName){
	theWindow=window.open(fileName,winName,'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,hotkeys=no,width=640,height=480');
	theWindow.focus();
}

function memoWindow(fileName,winName){
	theWindow=window.open(fileName,winName,'menubar=yes,toolbar=yes,location=yes,directories=no,status=no,scrollbars=yes,resizable=yes,hotkeys=no,width=800,height=600');
	theWindow.focus();
}









