
var ids = Array('start',1,2,3,4,5,6,7); 

// JavaScript Document
function display_id(id,sid){
	if(id==2){
		var element = document.getElementById("groupframe");
		if(element){
			element.src = "group_1.php?id="+id+"&"+sid+"";	
		}
		var element = document.getElementById("groupfotos");
		var picshow ="<iframe frameborder='0' marginheight='0' marginwidth='0' name='picshow' id='picshow' scrolling='no' src='group_show1/show.php?directory=photos&auto=1&currentPic=1'></iframe>";
		if(element){
			element.innerHTML=picshow;
		}
	}
	else{
		var element = document.getElementById("groupframe");
		if(element){
			element.src = "group_1.php?id="+id+"&"+sid+"";	
		}
		var pic_element = document.getElementById("groupfotos");
		var pics ="<img name='show' id='show' src='group_show2/photos/Luftaufnahme"+id+".jpg' width='400' height='220' alt='' border='0'/>";
		if(pic_element){
			pic_element.innerHTML=pics;
		}
		
	}
	
	

}

function init(sid){
	display_id('start', sid);
}

