function hideSelect(fObj) {

var j;


 if (fObj.options[fObj.selectedIndex].value!=0 && document.getElementById(fObj.options[fObj.selectedIndex].value)) {
	var l=fObj.length;
    for (var i=0; i<l; i++) {
      if(fObj.options[i].value!=0){
        j=document.getElementById(fObj.options[i].value);
        if (i == fObj.selectedIndex) {
          j.style.display = 'inline';
        } else {
          if(j)           
          j.style.display = 'none';
        }
      }
    }
  }



}

  function popuplink_c(aid,w, h) {   
	var sbox = document.option.company;
 	var wert = sbox.options[sbox.selectedIndex].value;
	if (wert == 'Bitte waehlen') {
		window.close();
		
	}else {
		fenster = window.open(aid + "&company=" + wert, "PopUp", "screenX=800,screenY=150,left=600,top=300,width=" + w + ",height=" + h + ",menubar=no,toolbar=no,scrollbars=yes,status=no,resizable=no,location=no,hotkeys=no")
		fenster.focus();
	}
	wert = 0;
  }
 
 
 
 function popuplink(aid,w, h) {

	 	 
	fenster = window.open(aid,"PopUp","screenX=800,screenY=150,left=600,top=300,width="+w+",height="+h+",menubar=no,toolbar=no,scrollbars=yes,status=no,resizable=no,location=no,hotkeys=no");
	fenster.focus();
}

 function popuplink_order(aid,w, h) {

  	var oon = document.option.o_order_number.value;
	var e = document.option.email.value; 	 	
	var ecc = document.option.email_cc.value;
	var dn = document.option.dongle_number.value;
	var dd = document.option.dongle_date.value;
	 	 
	fenster = window.open(aid +"&oon="+oon+"&e="+ e+"&ecc="+ ecc+"&dn="+ dn+"&dd=" + dd,"PopUp","screenX=800,screenY=150,left=600,top=300,width="+w+",height="+h+",menubar=no,toolbar=no,scrollbars=yes,status=no,resizable=no,location=no,hotkeys=no");
	fenster.focus();
}

