/* **********************************************************************
 * MODULE	: ShowSubDoc.js
 * AUTHOR	: Christoph A. Lutz
 * CREATED	: Aug 19 2002
 * COMPATIBILITY: Requires JavaScript 1.1.
 * DESCRIPTION	: Shows document in new window that automatically closes when focus is removed.
 * COPYRIGHT    : Copyright (c) 2002 Christoph A. Lutz.
 * DISTRIBUTION : Freely redistributable. Use at your own risk.
 * **********************************************************************/

function ShowSubDoc(path, width, height, title) {
    myWin = open(path, title, "directories=no,height="+height+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,width="+width+"");
    }
