// Standardfenster erzeugen

function Show(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url,'','width=660,height=480,menubar=0,toolbar=0,scrollbars=1');
}

function Hint(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url,'help','width=300,height=200,menubar=0,toolbar=0,scrollbars=1');
		new_win.focus();
}


function Login(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url,'','width=500,height=300,menubar=0,toolbar=0,scrollbars=0,resizable=0');
}


function Show_Full(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url);
}