function checkAll(wotForm,wotState) {
    for (a=0; a<wotForm.elements.length; a++) {
	if (wotForm.elements[a].type == "checkbox") {
	    wotForm.elements[a].checked = wotState ;
	}
    }
}

function windowOpener(url, title, feature) {
    var myWindow = window.open(url, title, feature);
    myWindow.focus();
}

