function GetBoundaryMap(vUrl,MapName){
  if (MapName != "") {
	conCatURL = vUrl + "?map=" + MapName
	location.href = conCatURL;
	//popupWin(conCatURL,'name','width=640,resizable=yes,scrollbars=yes,menubar=yes'); 
  }
  else {
    location.href = vUrl;
	//popupWin(vUrl,'name','width=640,resizable=yes,scrollbars=yes,menubar=yes');
  } // if
}

