function the_ghost() {
document.getElementById("punktyCheckbox").value="";
document.getElementById("punktyRadio").value="";

	inputList = document.forms["calc"];
	j=0;
	k=0;

	//document.title="";
	for(i=0; i < inputList.elements.length; i++) {
	curElement=inputList.elements[i];
		if(curElement.checked == true && curElement.type=="checkbox") {
			copyChecked(curElement.id);
		}
		
		if(curElement.checked == true && curElement.type=="radio") {
			copyRadio(curElement.id);
   		}
	}
	
	document.forms["calc"].submit();
}

function copyChecked(idd) {
spanId=idd.substring(1);
if (spanId >= 1000 && spanId<=1002) {
	document.getElementById("punktyCheckbox").value+="\n---------"+document.getElementById("spn"+spanId).innerHTML;
}
else {
	document.getElementById("punktyCheckbox").value+="\n"+document.getElementById("spn"+spanId).innerHTML;
}
}

function copyRadio(idd) {
spanId=idd.substring(1);
document.getElementById("punktyRadio").value+="\n"+document.getElementById("spn"+spanId).innerHTML;
}
