// Basic function to new open windows
function OpenWindow(url, name, width, height, options)
{
	if (!name) name = "HelpWindow";
	if (!width) width = 600;
	if (!height) height = 600;
	if (!options) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
	var newWin = window.open(url, name, "width=" + width + ",height=" + height + "," + options);
}
