<!-- Start Script

function swappic(img_name,img_src){
	document[img_name].src=img_src;
}
function openwindow(datei, w, h) {
	window.open(datei,"_blank","toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizeable=0,copyhistory=0,menubar=0,width=" + w + ",height=" + h)
}

function popup($datei, $w, $h, $sb, $resize) {
	window.open($datei,"_blank","toolbar=0,location=0,directories=0,status=0,scrollbars=" + $sb + ",resizable=" + $resize + ",copyhistory=0,menubar=0,width=" + $w + ",height=" + $h)
}

function SelectAll(theForm,selected) {

	for(var x = 0; x < theForm.elements.length; x++) { 
		
		theForm.elements[x].checked=selected;
	
	}
}

function qr($question, $url) {
	if (confirm($question)) {
		document.location.href = $url
	}
}


function addText($formular, $input, $text){
	document[$formular][$input].value = document[$formular][$input].value + $text;
}
//  End -->