
function entferneText(el) {
    if (el.defaultValue==el.value) el.value = ""
    }

    function setzeText(el,text){
     if (el.value=="") el.value= text
    }

function berechnegesamt()
	{
     anzahl_tmp=document.getElementById('anzahl').value
     preis_tmp=document.getElementById('preis').value
	 anzahl_tmp=anzahl_tmp.replace(",",".");	 
	 preis_tmp=preis_tmp.replace(",",".");	 
		
	anzahl=parseFloat(anzahl_tmp)
	preis=parseFloat(preis_tmp)
	
	gesamt=anzahl * preis
	document.getElementById('gesamt').value=gesamt
	
	}
	
var artikel_id;
function Info(artikel_id)
{
info2 = window.open("./pro_info.php?id="+artikel_id, "Ubersicht","width=650,height=550,left=200,top=150,scrollbars=yes");
info2.focus();
}





function warenkorb_info()
{
info3 = window.open("about:blank", "warenkorb2","width=250,height=150,left=200,top=150,scrollbars=no");
info3.focus();
}



var check
function loeschen()
{
Check = confirm("Wollen Sie diese Artikel wirklich löschen?");
if(Check == false)
{
return false
}
else
{
return true;
}
}


