function phpad(a) {
  var sessid;
  if (parent.frames.length > 0){
    sessid = parent.frames[3].location.search;
    sessid = sessid.substring(1, sessid.length);
    var ausgabe = /PHPSESSID=(\w.+)&/;
    var erg = ausgabe.test(sessid);
    if (erg){
      ausgabe.exec(sessid);
      sessid = RegExp.$1;
    }else{
      ausgabe = /PHPSESSID=(\w.+)/;
      erg = ausgabe.test(sessid);
      if (erg){
        ausgabe.exec(sessid);
        sessid = RegExp.$1;
      }
    }
  }else{
    document.forms[a].target = '';
    sessid = '';
  }

  document.forms[a].elements["PHPSESSID"].value = sessid;
//document.forms[a].action = 'http://www.djorder.de/nav/warenkorb.php?PHPSESSID='+sessid;
  document.forms[a].action = 'http://www.discoshop.de/cgi-bin/warenkorb.pl?PHPSESSID='+sessid;;
}

function blankbasket(){
  parent.frames[3].location = parent.frames[3].location+'&blank=true';
}



function wahl(sp) {
  if (sp   ==   '0'){
    parent.sprache = 'd';
    location = 'shop_md.htm';
  }
  if (sp   ==   '1'){
    parent.sprache = 'e';
    location = 'shop_me.htm';
  }
  if (sp   ==   '2'){
    parent.sprache = 'f'
    location = 'shop_mf.htm';
  }
//  parent.frames[1].location=parent.frames[1].location.href;
//  parent.frames[1].location.reload();
}



function nn(a) {
    window.open ('http://www.discoshop.de/nav/porto.htm', 'newWin', 'scrollbars=yes,status=yes,width=400,height=300,resizable=yes');
}

function dpd(a) {
    window.open ('http://www.discoshop.de/nav/porto.htm', 'newWin', 'scrollbars=yes,status=yes,width=400,height=300,resizable=yes');
}


function agb(a) {
    window.open ('http://www.discoshop.de/agbs.htm', 'newWin', 'scrollbars=yes,status=yes,width=400,height=300,resizable=yes');
}


function post(link){
window.open (link, 'Weiter Empfehlen', 'scrollbars=yes,status=yes,width=400,height=300,resizable=yes');
}


function ratenzahlung(anz,betrag) {
//  alert('Momentan noch nicht möglich !');
  betrag = betrag + ' ';
  betrag = betrag.substring(0, betrag.indexOf('.') + 3);
  window.open ('http://www.djorder.de/cgi-bin/raten.cgi?betrag='+betrag+'&raten='+anz, 'newWin', 'scrollbars=yes,status=yes,width=470,height=220,resizable=yes');

}


function check(){
var code = '';
if (document.forms.DiscoShop.Name.value == ''){
  code += 'Name / name\n';
}
if (document.forms.DiscoShop.Strasse.value == ''){
  code += 'Strasse / street\n';
}
if (document.forms.DiscoShop.PLZ.value == ''){
  code += 'Postleitzahl / zip code\n';
}
if (document.forms.DiscoShop.Stadt.value == ''){
  code += 'Stadt / city\n';
}
if (document.forms.DiscoShop.Land.value == ''){
  code += 'Land / country\n';
}
if (document.forms.DiscoShop.Email.value == ''){
  code += 'Email/ email\n';
}

if (document.forms.DiscoShop.Versand.value){
  code += 'Versand / shipping and payment\n';
}

if (! document.DiscoShop.agbs.checked){
  code += 'allgemeine Geschäftsbedingungen bitte akzeptieren / terms of conditions\n';
}

  if (code == ''){
      document.forms.DiscoShop.submit()
  }else{
    alert('Zu folgendem Punkt fehlen noch die nötigen Angaben : \nplease complete the following : \n'+code);
  }
}