
	
	
function setSelectionSite(id){
	
	
	var swf = document.getElementById('swf');
	var html = document.getElementById('html');
	
	var about = document.getElementById('about');
	var interaction = document.getElementById('interaction');
	
	/*
	swf.style.width = '100%';
	if(id == 'about' || id == 'interaction'){
		swf.style.width = '350px';
		html.scrollTop = 0;
	}
	*/
	
	if(id == 'album'){
		swf.style.height = "800px";
		}else{
		swf.style.height = "100%";
	}
	
	about.style.display = (id == 'about') ? 'block' : 'none';
	interaction.style.display = (id == 'interaction') ? 'block' : 'none';

	
}

//about.style.height = (id == 'about') ? 'auto' : '0px';
//interaction.style.height = (id == 'interaction') ? 'auto' : '0px';


var ref =[];
function viewDetails(pointid){
	if(ref.length > 0){
		ref[0].close();
		ref.pop();
	}
	var w = 650;
	var h = 450;
	var url = 'details.php?pointid='+pointid;
	win = window.open(url, "details", "width="+w+", height="+h+", status=no, scrollbars=yes, top=150, left=350");
	win.focus();
	ref.push(win);
}
	
	
	


 
 