function makeVisible(was, status) {
	if(status == 'on') {
		document.getElementById(was).style.display = 'inline';
		}
	if(status == 'off') {
		document.getElementById(was).style.display = 'none';
		}
	}
	

function showBill (Adresse) {
	 MeinFenster = window.open(Adresse, "Zweitfenster", "width=810,height=720,left=100,top=200");
	 MeinFenster.focus();
	}

function showMap () {
	 MeinFenster = window.open("map.html", "Zweitfenster", "width=980,height=720,left=100,top=200");
	 MeinFenster.focus();
	}

function showShippng(id) {
	makeVisible('selectUser','off');
	ids = payIDs.split(",");
	i = 0;
	while(i < ids.length ) {
		document.getElementById("ship_"+ids[i]).style.display = 'none';
		i++;
		}
	document.getElementById("ship_"+id).style.display = 'inline';
	}
	
function showInfo(url, inf) {
	window.open(url,'_blank',inf);	
	}
	


