/**
 * Opens a window. The method can be used within the HREF-property of an
 * anchor to prevent the display of "[OBJECT]" after clicking the link.
 *
 * @param src		a string containing the name of the file to be displayed
 * @param title		a string containing the unique name of the window
 * @param status	a string containing properties of the window
 */
function openWindow(src, title, status) {
	window.open(src, title, status);
}
