function addRequestLink(recordID,obj) {
		var cnt = document.getElementById("menu-sub").innerHTML;
		var links = new Array();
		links['wohnen'] = 'Anfrage.274.0.html?&record=';
		links['garten'] = 'Anfrage.273.0.html?&record=';
		links['gefuehl'] = 'Anfrage.160.0.html?&record=';
		links['schnap'] = 'Anfrage.275.0.html?&record=';
		cnt = cnt + '<a href="' + links[obj] + recordID + '" class="menu">Anfrage</a>';
		document.getElementById("menu-sub").innerHTML = cnt;
}

function addRequestLink_list(recordID,obj) {
		var cnt = document.getElementById("menu-sub-list").innerHTML;
		var links = new Array();
		links['wohnen'] = 'Anfrage.274.0.html?&record=';
		links['garten'] = 'Anfrage.273.0.html?&record=';
		links['gefuehl'] = 'Anfrage.160.0.html?&record=';
		links['schnap'] = 'Anfrage.275.0.html?&record=';
		cnt = cnt + '<li><a href="' + links[obj] + recordID + '" class="menu">Anfrage</a></li>';
		document.getElementById("menu-sub-list").innerHTML = cnt;
}

function addRequestLink_rechts(recordID,obj) {
		var cnt = document.getElementById("menu-pSub").innerHTML;
		var links = new Array();
		links['wohnen'] = 'Anfrage.274.0.html?&record=';
		links['garten'] = 'Anfrage.273.0.html?&record=';
		links['gefuehl'] = 'Anfrage.160.0.html?&record=';
		links['schnap'] = 'Anfrage.275.0.html?&record=';
		cnt = cnt + '<p class="menu"><a href="' + links[obj] + recordID + '" class="menu">Anfrage</a></p>';
		document.getElementById("menu-pSub").innerHTML = cnt;
}
