
// Global javascript code.
// (c) 2002 Jakob Zierk c/o Gosign media. GmbH

// Creates a new window:
function showWindow(title, width, height, src)
{
	window.open(src, title, "width=" + width + ",height=" + height);
}

