function prepareMapPop(){
	if(!document.getElementById || !document.getElementsByTagName) return true;
	var paraMap = document.getElementById("map");
	var mapLink = paraMap.getElementsByTagName("a");
	mapLink[0].onclick = function(){
		popwin(this.href, 'map', '718px', '600px', 'scroll');
		return false;
	}
}

window.onload = function(){
	prepareMapPop();
}