//////////////////////////////////////////////////////////////////////////////////////////////
// help functions
//////////////////////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////
// popup_help
// opens a popup window with a help text
///////////////////////////////////////////////

function popup_help(URL)
{
	help_window=window.open(URL,'','height=250, width=450, resizable=yes, scrollbars=yes, menubar=no, toolbar=no');
	help_window.focus();
	return false;
}