<script language="JavaScript">
<!--
function QuickJump1(Formular)
{
var Element = Formular.Ziel.selectedIndex;
var Frameziel = Formular.Ziel.options[Element].frameziel;
var iFrameziel = Formular.Ziel.options[Element].iframeziel;
var iFramedatei = Formular.Ziel.options[Element].iframedatei;
if(Formular.Ziel.options[Element].value != 0)
{
if(Frameziel == "Haupt")
{
if(Frameziel == "extern")
{
window.open(Formular.Ziel.options[Element].value);
}
else
{
if(iFrameziel)
{
top.frames[Frameziel].location = Formular.Ziel.options[Element].value;
top.frames[Frameziel].document.getElementById(iFrameziel).src = iFramedatei;
}
else
{
top.frames[Frameziel].location = Formular.Ziel.options[Element].value;
}
}
}
else
{
top.location = Formular.Ziel.options[Element].value;
}
}
}
//-->
</script> |