// JavaScript Document
function openMap(ServiceName) {
  ServicePath = "http://arcims.boonecountygis.com/MappingServices/"  
  FullServiceName = ServicePath + ServiceName 
  w = screen.availWidth-10;
  h = screen.availHeight-20;
  features = "width="+w+",height="+h+",left=0,top=0,screenX=0,screenY=0";

  window.open(FullServiceName, "", features);
}