// JavaScript Document
<!--

leftPos = screen.availWidth-725;
leftPos2 = screen.availWidth-605;

	
function newWindow1() { 
  detailWindow1 = window.open("map.html", "detailWin1","toolbar=no,menubar=no,resizable=no,scrollbars=no,width=720,height=420,left="+leftPos+",top=0");
 setTimeout("detailWindow1.focus()",20);
}

function showWindow(showlink) { 
  detailWindow2 = window.open(showlink,"detailWin2", "toolbar=no,menubar=no,resizable=no,scrollbars=no,width=600,height=380,left="+leftPos2+",top=0");
 setTimeout("detailWindow2.focus()",20);
}

function closeWindow() { 
  window.close();
}

function linkWindow(maplink){
 detailWindow3 = window.open(maplink, "detailWin3","toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,width=600,height=420,left="+leftPos2+",top=0");
 setTimeout("detailWindow3.focus()",20);
}

//-->

