function infos(zahl, modus) {
	var info, link;
	if(modus == 1) {
		info = "block";
		link = "block";
	}
	if(modus == 2) {
		info = "none";
		link = "block";
	}
	document.getElementById('more_' + zahl).style.display = link;
	document.getElementById('info_' + zahl).style.display = info;
}

function set_form_action(f_action) {
	//alert(f_action);
	document.getElementById('f_action').value = f_action;
}

function windowOpen(url, title, width, height, params) {
	
	window.open(url, title, 'width=' + width + ',height=' + height + 'dependent=yes,left=200,top=100,location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no,' + params);
	
}