//  setRadioButton(\'id_' . $row_no . ''\');
function setRadioButton(theBox){
    if (document.getElementById(theBox)) {
        document.getElementById(theBox).checked = true;
	}
}

function setCheckbox(theBox){
    if (document.getElementById(theBox)) {
        document.getElementById(theBox).checked = (document.getElementById(theBox).checked ? false : true);
	}
}

function setCheckboxSET(theBox){
    if (document.getElementById(theBox)) {
        document.getElementById(theBox).checked = true;
	}
}

function setCheckboxUNSET(theBox){
    if (document.getElementById(theBox)) {
        document.getElementById(theBox).checked = false;
	}
}

function Wechsel(Seite,Text)
{
    var Antwort = confirm(Text);
    if(Antwort == true)
    {
        location.href = Seite;
    }
}

function delete_formCheck(Text)
{
    var Antwort = confirm(Text);
    if(Antwort == true)
    {
        document.delete_form.submit()
    }
}

function mark_formCheck(Text)
{
    var Antwort = confirm(Text);
    if(Antwort == true)
    {
        document.mark_form.submit()
    }
}