
function CheckBannerForm()
{
    if (document.bestellform.bn_bxh.value)
    {
        var VSBMBAN = new Object();

        VSBMBAN._this_banner_format = document.bestellform.bn_bxh.value;

        self.location.href = "?_this_banner_format=" + VSBMBAN._this_banner_format + "&time=" + new Date().getTime();
    }
}

// *************************************************** //
//  Eingabefelder Aktivieren/Deaktivieren
//  (C) Hans Reisenauer - www.virtualsystem.de
// ***************************************************//

function CheckAuswahl(val, val2)
{
    var a=''; var b=''; var c=''; var d='';

    a=0;

    if (val == 1 && val2 ==1) {             b=1; c=2; d=3;
    } else if ( val == 1 && val2 == 2 ) {   b=1; c=2;
    } else if ( val == 1 && val2 == 3 ) {   b=1; d=2;
    } else if ( val == 0 && val2 == 1 ) {   c=1; d=2;
    } else if ( val == 0 && val2 == 2 ) {   c=1;
    } else if ( val == 0 && val2 == 3 ) {   d=1;
    } else if ( val == 1 && val2 == 0 ) {   b=1;  }
    
    // alles zeigen

    if (document.bestellform.sel_zvc.options[a].selected == true)
    {
      if (val == 1) { document.bestellform.pbid_zeit.disabled = true; }
        
      if (val2 == 1 || val2 == 2 ) { document.bestellform.pbid_views.disabled = true; }
        
      if (val2 == 1 || val2 == 3 ) { document.bestellform.pbid_clicks.disabled = true; }
    }

    // *** 1

    if (val == 1)
    {
        if (document.bestellform.sel_zvc.options[b].selected == true)
        {
            document.bestellform.pbid_zeit.disabled = false;
        
            if (val2 == 1 || val2 == 2 ) { document.bestellform.pbid_views.disabled = true; }
        
            if (val2 == 1 || val2 == 3 ) { document.bestellform.pbid_clicks.disabled = true; }
        }
    }

    // *** 2

    if (val2 == 1 || val2 == 2 )
    {
        if (document.bestellform.sel_zvc.options[c].selected == true)
        {
            if (val == 1) { document.bestellform.pbid_zeit.disabled = true; }
        
            document.bestellform.pbid_views.disabled = false;
        
            if (val2 == 1 || val2 == 3 ) { document.bestellform.pbid_clicks.disabled = true; }
        }
    }

    // *** 3

    if (val2 == 1 || val2 == 3 )
    {
        if (document.bestellform.sel_zvc.options[d].selected == true)
        {
            if (val == 1) { document.bestellform.pbid_zeit.disabled = true; }
        
            if (val2 == 1 || val2 == 2 ) { document.bestellform.pbid_views.disabled = true; }

            document.bestellform.pbid_clicks.disabled = false;
        }
    }
} // ef

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ */

function CheckAuswahlBType()
{

    if (document.bestellform.bn_typ.options[0].selected == true)
    {
        document.bestellform.bn_titel.disabled = true;
        document.bestellform.bn_url.disabled = true;
        document.bestellform.bn_img.disabled = true;
    }

    if (document.bestellform.bn_typ.options[1].selected == true)
    {
        document.bestellform.bn_titel.disabled = false;
        document.bestellform.bn_url.disabled = false;
        document.bestellform.bn_img.disabled = false;
    }

    if (document.bestellform.bn_typ.options[2].selected == true)
    {
        document.bestellform.bn_titel.disabled = false;
        document.bestellform.bn_url.disabled = true;
        document.bestellform.bn_img.disabled = false;
    }
    
} // ef

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ */

var win=null;

onerror = stopError;

function stopError() { return true; }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++ */

