function confirmSubmit()
{
    var agree=confirm("Oletko varma?");
    if (agree)
    return true ;
    else
    return false ;
}

function js_redirect(to) 
{ 
    window.location=to;
}

function print_window(page)
{
    win1 = window.open("workform.php", "Print Window", "width=600,height=800,scrollbars=yes");
    // win1.document.writeln(page);
}

function checkUncheckSome(controller,theElements) {
    var formElements = theElements.split(',');
    var theController = document.getElementById(controller);
    
    if (formElements.length == 1){
        formElements=theElements;
        theItem = document.getElementById(formElements);
        if(theItem.type == 'checkbox'){
            theItem.checked = theController.checked;
        }
    } else {
        for(var z=0; z<formElements.length;z++){
        theItem = document.getElementById(formElements[z]);
            if(theItem.type){
                if(theItem.type == 'checkbox'){
                    theItem.checked = theController.checked;
                }
            }
        }
    }
}


