// JavaScript Document

function ShowMap(postcode) {
	features = "WIDTH=860,HEIGHT=640,toolbar=0,directories=0,menubar=0,status=0,resizable=1,location=0,scrollbars=1,copyhistory=0"
	map = window.open('http://uk.multimap.com/p/browse.cgi?pc=' + postcode + '&db=pc' , 'map' ,features)
	if (map  != null && map.opener == null) {
		map.opener = self
	}

}
