function getprod(oForm,pCode) {

 //alert("sdhghsqd"); 
 // str = "Form Elements of form " + oForm.name + ": \n";
 //alert(str); 
  var pcd=pCode;
  var suval;
  var tsuval;
  var url="http://www.marienshop.net/shop/kago/cart_in.asp?";

with (oForm)
 {
 suval=su.value;
 tsuval=tsu.value;
 //suval=document.getElementById('su').value;
 //tsuval=document.getElementById('tsu').value;
  //alert(tsuval);


} 

url= url+ "scd="+ pcd + "&tsu=" + tsuval + "&su=" + suval ;

  //alert(url);

//document.location(url);
window.location.href=url;

//window.event.returnValue=false; //this also must be commented; but added "return" into onclick="return getprod(this.form,'A01_1107');" in the asp file
return false;
  
  }

