
<!-- Hide script
// by Geoffrey B Inglis 
// first pass 8-22-98
// converted for IFPA 14-Apr-99
// converted for SON 29-Jul-01
// University of Rochester, Dept of Environmental Medicine.
// 
  // Function to open named window of size(h,w), and allow TARGET to put page there!
  // Any or all arguments may be ommited, use null as place holder.
  // Call examle: onClick="os(null,this.target,'500','500')" TARGET='anyname' 
  // OR: onClick="os()" TARGET='info' OR: onClick="os(null,this.target)" TARGET="microscope"
  // OR: <A HREF="..." onClick="os(null,null,null,'800','yes')" TARGET='info'>
function os(r,n,h,w,s,t,l,m,x)  { // href,name,height,width,scrollbars,location,menu,status -by Geoff Inglis
((r) ? r : r="" );  		  // href   (default = 'localhost')
((n) ? n : n="info" );  	  // name   (default = 'info')
((h) ? h : h="300" );   	  // height (default = '450' ) 
((w) ? w : w="400" );   	  // width  (default = '600' )
((s) ? s : s="yes" );   	  // scroll (default = 'yes' )
((t) ? t : t="no"  );   	  // naviga (default = 'no'  )
((l) ? l : l="no"  );   	  // locati (default = 'no'  )
((m) ? m : m="no" );   	  // menu   (default = 'no'  )
((x) ? x : x="no"  );   	  // status (default = 'no'  )

  var scope=window.open(r,n,"height="+h+",width="+w+",toolbar="+t+",location="+l+",menubar="+m+",directories=no,status="+x+",resizable=yes,scrollbars="+s);
  //  scope.document.write("<HTML><BODY><P><H1 align=center>Loading!</H1></BODY></HTML>")
  scope.focus();
}

	function areYouSure(theQuestion) {
		if (! theQuestion ) { theQuestion="Are you sure?"} 
		return confirm(theQuestion)
		}
// -->

