
<!--
xoffSet = 7 //xy offset for opening multiple windows (in pixels)
yoffSet = 20
z=0 //offset multiplier
var scope = new Array();
function compare(a,b) { //compare function for sort routine,  look it up!
	return a - b
}

  // 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="(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 = ''  ) if no HREF open wait for target!
((n) ? n : n="info");   // name   (default = 'info')
((h) ? h : h="550"  );   // height (default = '100' ) 
((w) ? w : w="550"  );   // width  (default = '300' )
((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'  )

//  alert("1 name= "+n+" &nbsp; top= "+":"+z*yoffSet + " &nbsp; left= "+":"+z*xoffSet );

   scope=window.open(r,n,"top="+(z*yoffSet)+",left="+(z*xoffSet)+",height="+h+",width="+w+",toolbar="+t+",location="+l+",menubar="+m+",directories=no,status="+x+",resizable=yes,scrollbars="+s);
//  var scope=window.open(r,n,"screenY="+screen.availTop+(z*yoffSet)+",screenX="+screen.availLeft+(z*xoffSet)+",height="+h+",width="+w+",toolbar="+t+",location="+l+",menubar="+m+",directories=no,status="+x+",resizable=yes,scrollbars="+s);
//  var scope=window.open(r,n,"top="+screen.availTop+",left="+screen.availLeft+ "height="+h+",width="+w+",toolbar="+t+",location="+l+",menubar="+m+",directories=no,status="+x+",resizable=yes,scrollbars="+s);
//  if (scope.opener == null) {scope.opener = self};


//scope.sort(compare); //sort 
//for (var i = 0; i < scope.length; i++) {  // loop thorugh all the windows to bring to front.
  //alert(i);
  if (!scope.closed) {
 	scope.focus();
	}; //Bring to front, if not closed already
//}
//  z += 1 //increment the offset multiplier / window-name; 

	scope.document.write("<p></p><h1>Please wait for document to load! </h1>");
}

<!--- --->
<!--- --->

	TempString = navigator.appVersion

//-->
