var tour={
Leipzig:{path:'/virtuelle_touren/heritus_leipzig_v1-0/HeritusAG_heritus_leipzig_13-01-09.html', target:'_blank', options:'status=yes,resizable=yes,top=0,left=0,width=800,height=500'},
Mannheim:{path:'/virtuelle_touren/heritus_mannheim_v1-1/HeritusAG_heritus_mannheim_12-01-09.html', target:'_blank', options:'status=yes,resizable=yes,top=0,left=0,width=800,height=500'}
};

function startTour(t){
	if (typeof(t) != 'undefined' && typeof(t.path) != 'undefined' && typeof(t.target) != 'undefined' && typeof(t.options) != 'undefined'){
		window.open(t.path, t.target, t.options);
	}else{
		var str=''
		for(var i in tour){
			str+='javascript:startTour(tour.'+i+')\n';
		}
		alert('Ungültiger Link!\n\nListe der gültigen Links:\n'+str);
	}
}
