function toggle_ps_registration(hide) {
	selDiv = 'ps_registration_map';
	
	if (hide == 1) {
		document.getElementById(selDiv).style.height = '259px';
		document.getElementById(selDiv).style.display = 'block';
	}
	else {
		document.getElementById(selDiv).style.height = '0px';
		document.getElementById(selDiv).style.display = 'none';
	}
}

function aviatenmap_ps_registration_itemnr(itemnr) {
	nritem = itemnr;
	
	itemDiv = 'ps_registration_map_' + nritem;
	
	itemDivHeight = document.getElementById(itemDiv).offsetHeight;
	
	if (itemDivHeight == 0) {
		// Eigl
		if (nritem == 0) {
			itemTop = '22px';
			itemLeft = '374px';
			itemHeight = '25px';
			itemWidth = '127px';
		}
		
		// Hoffelner
		if (nritem == 1) {
			itemTop = '61px';
			itemLeft = '302px';
			itemHeight = '25px';
			itemWidth = '155px';
		}
		
		// Moser
		if (nritem == 2) {
			itemTop = '148px';
			itemLeft = '146px';
			itemHeight = '28px';
			itemWidth = '134px';
		}
		
		// Seifriedsberger
		if (nritem == 3) {
			itemTop = '62px';
			itemLeft = '147px';
			itemHeight = '32px';
			itemWidth = '123px';
		}
		
		// Troppacher
		if (nritem == 4) {
			itemTop = '164px';
			itemLeft = '39px';
			itemHeight = '32px';
			itemWidth = '155px';
		}
		
		document.getElementById(itemDiv).style.top = itemTop;
		document.getElementById(itemDiv).style.left = itemLeft;
		document.getElementById(itemDiv).style.height = itemHeight;
		document.getElementById(itemDiv).style.width = itemWidth;
		document.getElementById(itemDiv).style.display = 'block';
	}
}


function aviatenmap_ps_registration_lock_itemnr(lockitemnr) {
	nritem = lockitemnr;
	
	itemDiv = 'ps_registration_map_lock_' + nritem;
	
	itemDivHeight = document.getElementById(itemDiv).offsetHeight;
	
	for (i = 0; i <= 4; i++) {
		itemDivAll = 'ps_registration_map_lock_' + i;
		
		document.getElementById(itemDivAll).style.top = '0px';
		document.getElementById(itemDivAll).style.left = '0px';
		document.getElementById(itemDivAll).style.height = '0px';
		document.getElementById(itemDivAll).style.width = '0px';
		document.getElementById(itemDivAll).style.display = 'none';
	}
	
	// Eigl
	if (nritem == 0) {
		itemTop = '22px';
		itemLeft = '374px';
		itemHeight = '25px';
		itemWidth = '127px';
	}
	
	// Hoffelner
	if (nritem == 1) {
		itemTop = '61px';
		itemLeft = '302px';
		itemHeight = '25px';
		itemWidth = '155px';
	}
	
	// Moser
	if (nritem == 2) {
		itemTop = '148px';
		itemLeft = '146px';
		itemHeight = '28px';
		itemWidth = '134px';
	}
	
	// Seifriedsberger
	if (nritem == 3) {
		itemTop = '62px';
		itemLeft = '147px';
		itemHeight = '32px';
		itemWidth = '123px';
	}
	
	// Troppacher
	if (nritem == 4) {
		itemTop = '164px';
		itemLeft = '39px';
		itemHeight = '32px';
		itemWidth = '155px';
	}
	
	document.getElementById(itemDiv).style.top = itemTop;
	document.getElementById(itemDiv).style.left = itemLeft;
	document.getElementById(itemDiv).style.height = itemHeight;
	document.getElementById(itemDiv).style.width = itemWidth;
	document.getElementById(itemDiv).style.display = 'block';
}
