function confirmlink(strText)
{
   var strConfirmed = confirm(strText);
   return strConfirmed;
}

function funcOpenWindow(strFileName, strURL)
{
	window.open(strFileName, '_blank', 'width=800, height=500, top=50, resizable=yes');
}

function funcAuswahlliste(objAuswahl, strURL)
{
	var intWert = objAuswahl.options[objAuswahl.options.selectedIndex].value;
	strURL = strURL + intWert;
	parent.frames[1].location.href = strURL;
	select.form.reset();
}
