<!--hide script from old browsers
function newWindow(content,w,h) {
  var content,w,h
  var wf,hf,sWidth,sHeight
  sWidth=0
  sHeight=0
  wf = w+60
  hf = h+100

  var ns4up=(document.layers)?1:0;
  var ie4up=(document.all)?1:0;
  var ns6up=(document.getElementById&&!document.all)?1:0;
  if(ns4up||ns6up){
    sWidth=self.innerWidth;
    sHeight=self.innerHeight;
    }
  else if(ie4up){
    sWidth=document.body.clientWidth;
    sHeight=document.body.clientHeight;
    }
  if(sWidth==0||sHeight==0){
    sWidth=640
    sHeight=480
    }
  if(wf>sWidth){wf=sWidth-80}
  if(hf>sHeight){hf=sHeight}
  mapWindow = window.open('', 'newWin', 'scrollbars=yes,resizable=yes,width='+wf+',height='+hf)
  mapWindow.document.write ("<HTML><HEAD><TITLE>"+content+"</TITLE></HEAD><BODY BACKGROUND='sand1.jpg' BGCOLOR=WHITE>")
  // mapWindow.document.write ("sWidth="+sWidth+"<BR>")
  // mapWindow.document.write ("sHeight="+sHeight+"<BR>")
  // mapWindow.document.write ("wf="+wf+"<BR>")
  // mapWindow.document.write ("hf="+hf+"<BR>")
  mapWindow.document.write ("<TABLE BORDER=0 ALIGN='center' CELLSPACING=0 CELLPADDING=15 BACKGROUND='wood.jpg'>")
  mapWindow.document.write ("<TR><TD ALIGN='center' VALIGN='middle'><IMG SRC='"+content+"'></TD></TR></TABLE><BR>")
  mapWindow.document.write ("<CENTER><B><A HREF='javascript:self.window.close()'>Close Window</A></B></CENTER><P>")
  mapWindow.document.write ("</BODY></HTML>")
}
//end hiding contents-->