/**
 * JavaScript - Handler for VisualCHR
 * $Id: program.js,v 1.2 2000/03/23 22:27:04 mad Exp $ 
 *
 * @author Matthias Saft ($Author: mad $)
 * @version $Date: 2000/03/23 22:27:04 $, $Revision: 1.2 $
 */


/**
 * sets the default status line
 */
function setDefaultStatus() {
        defaultStatus="VisualCHR";
        return;
}//end of setDefaultStatus


/**
 * opens the given url in a new window
 *
 * @param url the url to open
 */
function openProgramWindow(url) {
	window.open(url, 
				"programWindow", 
				"resizable=yes,scrollbars=yes,width=550,height=280");
	return;
}//end of openProgramWindow
