<!--
 // created by Nihat M. Gurmen 07/29/2003

 var win1, win2;

 function openWindow(url, w, h)
 {
	  var options = "toolbar=no,resizable=no,scrollbars=yes,left=100,top=100,width=" + w + ",height=" + h + ",noresize";
      win1 = window.open(url, "Glossary", options);
	  win1.focus();
 }

 function openWin(url)
 {
	  var options = "toolbar=no,resizable=no,scrollbars=yes,left=100,top=100,width=400,height=160,noresize";
      win2 = window.open(url, "Glossary", options);
	  win2.focus();
 }

 function statusBlock(status)
 {
	 window.document.write("<A HREF=\"javascript:openWindow(\'status.html\', 430, 300)\">" + status + "</A>");
 }

 function filenameBlock(type, fn, onoff)
 {
	 if (onoff)
	 {
		 window.document.write("<A HREF=\"" + type + "/" + fn + "\">" + fn + "</A>");
	 } else {
		 window.document.write(fn);
	 }
 }

 function filenameBlock2(type, fn, onoff, dos)
 {
	 if (onoff)
	 {
		 if (dos) {
			 window.document.write("<A HREF=\"" + type + "/" + fn + "\">Dos</A>");
		 } else {
			 window.document.write("<A HREF=\"" + type + "/" + fn + "\">Windows</A>");
		 }
	 } else {
		 window.document.write(fn);
	 }
 }

//-->
