// zentrale JS-Datei, wird in header inkludiert
// funktionen moeglichst sprechend bezeichnen

function msg_sel_all() {
	var box = document.getElementsByName("del_msg[]");
	if(box) {
		for (i=0;i< box.length;i++) {
			if(box[i].checked) {
				box[i].checked = false;
			}
			else {
				box[i].checked = true;
			}
		}
	}
}

function clearText(thefield) {
	if (thefield.defaultValue == thefield.value) {
		thefield.value = "";
	}
}

if (self != top) {
	parent.location.href = self.location.href;
}

