function clipPopup(url) {
	newwindow=window.open(url,'clip','height=480,width=640');
	if (window.focus) {newwindow.focus()}
	return false;
}
function printplanner(pln_id) {
	var check;
	var id;
	var termstoprint = 'planner_print.php?id='+pln_id;
	for(var i = 0; i < 6; i++) {
		id = 'printterm'+i;
		if(check = document.getElementById(id)) {
			if(check.checked==true) termstoprint = termstoprint+'&terms[]='+check.value;
		}
	}
	window.open(termstoprint);
}
