// Copyright 2009 & Autor:
// Andreas Schnellbacher Kommunikationstechnik - www.AS-K.de - support@AS-K.de
// und Dirk Fuchs
// Script : function.js
// Version: 1.00 Date: 04.10.2009

// Start function toggle(obj)
// Klappt "Container" ein und aus
// eg: onclick="toggle('Container-Name')"
function togglebox(obj)
    {
    var el = document.getElementById(obj);
    if( el.style.display != 'block' )
        {
        el.style.display = 'block';
        }
    else     {
        el.style.display = 'none';
        }
    }
// Ende  function toggle(obj)

// Aufruf = onClick="wopen('<?php echo $HTTP; ?>Antiquariat/agb.php', 'no', 'no', '200', '200')"
function wopen(URL, scrollbars, resizable, width, height)
{
var hiwi = window.open(URL, "Alle", "scrollbars=" + scrollbars + ",resizable=" + resizable + ",width=" + width + ",height=" + height + ",screenX=0,screenY=0");
hiwi.focus();
}



function selectoptin_URLjump(liste)
{
    var index = liste.options.selectedIndex;
    if (index == 0) return null;
    var value = liste.options[index].value;
    var formular = liste.form;
    formular.action = value;
    formular.target = "_parent";
    formular.submit();
}


