// JavaScript Document
function init_divs()
{
	document.getElementById('d_menge').style.display = "";
	document.getElementById('d_verpackung').style.display = "";
	document.getElementById('d_drucksache1').style.display = "";
	document.getElementById('d_drucksache2').style.display = "";
	document.getElementById('d_ergebnis').style.display = "none";
}



function addSelectOption(oSelect, oID, oText)
{
	var oOption = document.createElement("OPTION"); 
    oOption.setAttribute("value", oID); 
    //oOption.appendChild(document.createTextNode(oText)); 
	oOption.text=oText;
    oSelect.appendChild(oOption); 
}
