/* JAVA Document */

function gotoSelected(f)
{
	if(f.selectedIndex != 0)
	
	location.href = f[f.selectedIndex].value;
	
	else return false;
}


// Link best&auml;tigen -----------------------------------
function conf( text, url)
{
	if ( confirm( text ) )
	{
		location.href=url;
	}
	else
	{
		
	}
}
// Link best&auml;tigen Ende-------------------------------


