function CheckAll(v) {
	f=document.klist;l=f.elements.length;
	var i=0;
	for(i=0;i<l;i++) {
		if (f.elements[i].name=='act_id') f.elements[i].checked=v;
	}
}

function openWin(url) {
	w = open(url, "MYPAGE","width=566,height=568,scrollbars=yes,resizable=yes");
	w.focus();
	return(false);
}

function openLLWindow(loc,element) { // location less window
	open(loc, "", "toolbar=yes,location=no,locationBars=no,scrollbars=yes,resizable=yes");
	element.style.color="#7700aa";
}

function openMMWindow(theURL,winName,features) { //v2.0
    window.open(theURL,winName,features);
}

