function showPicture(filename,winWidth,winHeight) {
  if (winWidth)
  {
    var W = winWidth
  }
  else W = '600'
  
  if (winHeight)
  {
    var H = winHeight
  }
  else H = '600'
  
  picture = filename;
  newWindow = window.open('http://www.flls.org/portbyron/java/displaypicture.htm', 'PictureWin', 'toolbar=no,location=no,scrollbars=yes,resizable=yes,width='+W+',height='+H+',left=0,top=0')
}

function showDocument(document,winWidth,winHeight) {
  if (winWidth)
  {
    var W = winWidth
  }
  else W = '600'
  
  if (winHeight)
  {
    var H = winHeight
  }
  else H = '600'
  
  newWindow = window.open(document, 'DocumentWin','toolbar=no,location=no,scrollbars=yes,resizable=yes,width='+W+',height='+H+',left=0,top=0')
}



function jumpto(form) {
  var myindex=form.dest.selectedIndex
  
  window.open(form.dest.options[myindex].value, target="_parent"); 
}



//	var cuMsg = 'MouseOver Message!'; 
//	function update(msg) {
//		var pad_str="";
//		n = msg.length;
//		if(n<80) {
//			pad = (80-n)/2;
//			for(var i=0; i<pad; i++) {
//				pad_str+=" ";
//			}	
//		}	
//		cuMsg = pad_str + msg;
//		document.ccMsg.field.value = cuMsg;
//	       	}
