// help-Window
//===========
function CreateNewWindow()
{
helpWin = window.open ("help.htm","helpBook","copyhistory=0,resizable=1,scrollbars=1,height=400,width=600,toolbar=0,menubar=0,status=1");
}
// Delete #-Simbol
//==============
function DeleteInequal(name)
{
len = name.length;
for (var j = 0; j <= len-1; j++)
{ if ( name.substring(j,j+1) == '#' ) return(name.substring(0,j)) }
return(name);
}