<!--
function closeWin() {
  self.close()
}
function openWin(loca)  {
  var url = loca           //Set address of new window
  var height = 500                       //Set height
  var width = 900                       //Set width
  var name = ""             //Set window name
  var top = 20                            //Set distance from top
  var left = 20                            //Set distance from bottom
  newwin=window.open(url , name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
}
//-->
