function clicker1(){
	var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
		thediv.innerHTML = "<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><img src='image/2928.jpg' /></h1><br /><br><img src='image/map1.jpg'><br><a href='#' onclick='return clicker1();'><img src='image/close_window.jpg' /></a></td></tr></table>";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}


