/* old sidenav function
function sidenav(highlight1,subnav1) {
	var strTemp = new String();
	if ( highlight1 != '' ) {
		document.getElementById(highlight1).className = 'topicon1';	
	}
	if ( subnav1 != '' ) {
		document.getElementById(subnav1).className = 'subtopicson1';
  	}
	if (arguments.length >= 3) { 
		var subhead2 = arguments[2];
  	  	document.getElementById(subhead2).className = 'topicon2';
		if (arguments.length >= 4){
			var subcat2 = arguments[3];
			document.getElementById(subcat2).className = 'subtopicson2';
			if (arguments.length >= 5){
				var subhead3 = arguments[4];
				document.getElementById(subhead3).className = 'topicon3';
			}
		}			
	}
	document.getElementById('sidenav').style.visibility = "visible"; 
	}
		
}
*/

  /*
    Adds CSS class names to the LI elements of a nested UL list.
    leafes get the menu_leaf_class
    open nodes get the menu_open_class
    closed nodes get the menu_closed_class
    the current node gets the menu_active_class
    
    written 2004 by Ortwin Glueck
    
    mods for siemens styling by Ryan Ragle 2007.04.11
  */

  //config

  
  //the default page that is displayed if URL ends in /

 
    
  //main function
  //menu_id : id of the element containing the navigation
  var menu_url;
  function sidenav() {
	
	
	var menu_id = "sidenav";
     	var url = location.href;
     if (url.lastIndexOf("/") == (url.length-1)) {
       url = url; //+"index.shtml";
     }
     if (url.lastIndexOf("?") >= 0) {
       url = url.substring(0, url.lastIndexOf("?"));
     }
     if (url.lastIndexOf("#") >= 0) {
       url = url.substring(0, url.lastIndexOf("#"));
     }
     menu_url = url;
     
     var main = document.getElementById(menu_id);
     if (!main) alert("No element with id '"+ menu_id +"' found");
     menu_traverse(main);
     
    
     
  }
  
  /* Walks down the subtree and on the way back
     sets properties.
     returns bit set
             1: set = element is a node, unset = element is a leaf
             2: set = element contains the active node
             4: set = element is the active A node
  */
  function menu_traverse(element) {
  var menu_active_class = "active";
  var menu_leaf_class = "leaf";
  var menu_open_class = "open";
  var menu_closed_class = "closed";
    var props  = 0;
    
    // walk down
    for (var i=0; i<element.childNodes.length; i++) {
      var child = element.childNodes[i];
      props |= menu_traverse(child); // aggregate bits
    }
    
    // on the way back now
    switch (element.tagName) {
      case "UL":
        props |= 1;
        break;
        
      case "LI":
       var c1
	if (props & 1) {
		if (props & (2|4)) {
			c1 = menu_open_class;
			} else {
			c1 = menu_closed_class;
		} 
	} else {
		c1 = menu_leaf_class; 
	}
	/* shorthand version
        var c1 = (props & 1) ? 
                   ((props & (2|4)) ? menu_open_class : menu_closed_class)
                 : menu_leaf_class; 
   	*/
	
	
	 element.className = element.className ? element.className+" "+c1 : c1;
	 
	 if (c1 == menu_open_class) {
	 	if (element.childNodes.length > 0) {
			if (element.childNodes[0].tagName == "A") {
				element.childNodes[0].className += " bold normalDownArrow";
			}
		 }
	 }
	 
	 if (c1 == menu_leaf_class || c1 == menu_closed_class) {
	 	if (element.childNodes.length > 0) {
			if (element.childNodes[0].tagName == "A") {
				element.childNodes[0].className += "  normalBullet";
			}
		 }
	 }
	 
	 
	 
	 if (props & 4) {
		 if (element.childNodes.length > 0) {
			element.childNodes[0].className += " bold activeArrow highlightBackground";
		 }
		if (!(props & 2)) { 
			element.className += " "+menu_active_class;
			// cycle through and add highlightedBullet to elements below
			 for (var j=0; j<element.childNodes.length; j++) {
				 //document.write("j-loop:" + element.childNodes[j].tagName);
				 if (element.childNodes[j].tagName == "UL") {
				 	for (var x=0; x<element.childNodes[j].childNodes.length; x++) {
						if (element.childNodes[j].childNodes[x].tagName == "LI") {
							element.childNodes[j].childNodes[x].className += " highlightBackground";
							for(var z=0; z<element.childNodes[j].childNodes[x].childNodes.length; z++) {
								if (element.childNodes[j].childNodes[x].childNodes[z].tagName == "A") {
									element.childNodes[j].childNodes[x].childNodes[z].className += " highlightBullet highlightBackground";
								}
							}
						}
					}
				 }
			 }
			
			
		}
			props |= 2;
			props &= 1 | 2; // reset bit 4
	}
	
	
	
	
        break;
        
      case "A":
	
        if (props & 2) break; // once is enough
        var href = element.getAttribute("href");
        if (menu_isSameUrl(menu_url, href)) props |= 4;
        break;
    }
    
    return props;
  }
 
  //matches two URIs when href is the last part of url
  //.. and . are correctly resolved
  function menu_isSameUrl(url, href) {
    var a = url.split(/[?\/]/i);
    var b = href.split(/[?\/]/i);
    var i = a.length - 1;
    var j = b.length - 1;
    while ((i >= 0) && (j >= 0)) {
      if (b[j] == "..") { j-=2; continue; }
      if (a[i] == "..") { i-=2; continue; }
      if ((b[j] == ".") || (b[j] == "")) { j--; continue; }
      if ((a[i] == ".") || (a[i] == "")) { i--; continue; }
      if (! (a[i] == b[j])) return false;
      i--;
      j--;
    }
    return true;
  }
  
  /* End New Code */





startList = function(){
if (document.all&&document.getElementById){
  navRoot = document.getElementById("nav");
  for (i=0; i<navRoot.childNodes.length; i++){
    node = navRoot.childNodes[i];
    if (node.nodeName=="LI"){
		node.onmouseover=function(){
			this.className+=" over";
			}
		node.onmouseout=function(){
			this.className=this.className.replace(" over", "");
			}
		}
	}
  }
}
window.onload=startList;


var win = null;
function newWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function writeIndicator(expires,what) {
	var today = new Date();
	if (what == 'new' && today < expires) {
		document.write("<span class='accenttext'><strong>New!</strong></span>");
	} else if (what == 'updated' && today < expires) {
		document.write("<span class='accenttext'><strong>Updated!</strong></span>");
	} else {
		document.write("");
	}
}

function setupRollovers() {
  if (!document.getElementsByTagName)
    return;
  var all_links = document.getElementsByTagName('a');
  for (var i = 0; i < all_links.length; i++) {
    var link = all_links[i]; 
    if (link.className &&
        (' ' + link.className + ' ').indexOf(' rollover ') != -1) {
      if (link.childNodes &&
          link.childNodes.length == 1 &&
          link.childNodes[0].nodeName.toLowerCase() == 'img') {
        link.onmouseover = mouseover;
        link.onmouseout = mouseout;
      }
    }
  }
}

function find_target(e)
{

	var target; 
	
	if (window.event && window.event.srcElement) 
		target = window.event.srcElement;
	else if (e && e.target)
		target = e.target;
	if (!target)
		return null;
	
	while (target != document.body && target.nodeName.toLowerCase() != 'a')
		target = target.parentNode;
	
	if (target.nodeName.toLowerCase() != 'a')
		return null;
	
	return target;
}

function mouseover(e) {
	var target = find_target(e);
	if (!target) return;
	var img_tag = target.childNodes[0];
	img_tag.src = img_tag.src.replace(/(\.[^.]+)$/, '_over$1');
}

function mouseout(e) {
	var target = find_target(e);
	if (!target) return;
	var img_tag = target.childNodes[0];
	img_tag.src = img_tag.src.replace(/_over(\.[^.]+)$/, '$1');
}

// When the page loads, set up the rollovers
window.onload = setupRollovers;

function toggleLayer(whichLayer)
{
	if (document.getElementById)	{
		var style2 = document.getElementById(whichLayer).style;
		style2.display = style2.display? "":"block";
	}
	else if (document.all) {
		var style2 = document.all[whichLayer].style;
		style2.display = style2.display? "":"block";
	}
	else if (document.layers) {
		var style2 = document.layers[whichLayer].style;
		style2.display = style2.display? "":"block";
	}
}


/*****     GTAC Side Applet Menu      *****  
   This changes is added to resolve the IE 6.0 ActiveX update (KB912945).  
   After install the update, you cannot interact with ActiveX controls loaded 
   by the APPLET, EMBED, or OBJECT elements.  You have to manually click the 
   control to enable the ActiveX control.  To resolve this issue, this 
   function is created to load ActiveX controls externally, this enable 
   the web pages respond immediately to ActiveX controls without user 
   interaction.   

   04/20/06  Helena Cheng

   Add function gotoFORUM to redirect to news://openforum.ugs.com.  The direct
   link does not work in Firefox.

   03/21/08 Helena Cheng.

*/


function gotoFORUM()
{
    document.location = "news://openforum.ugs.com";
}


function RunUGS_params()
{
    var browser = navigator.appName;

    document.write('<APPLET id="Java1" CODE="slidem.class" CODEBASE="/help/assets/applets" ALIGN="baseline" WIDTH="143" HEIGHT="580">\n');
    document.write('<PARAM NAME="Notice" VALUE="Sliding Tree Menu, Copyright (c) 1997 OpenCube Technologies, Registered 15926">\n');
    document.write('<PARAM NAME="bgcolor" VALUE="204,204,204">\n');
    document.write('<PARAM NAME="jumpsize" VALUE="4">\n');
    document.write('<PARAM NAME="onsbtext" VALUE="GTAC Menu Item">\n');
    document.write('<PARAM NAME="loadmsg" VALUE="  ">\n');
    document.write('<PARAM NAME="loadmsgcolor" VALUE="204,204,204">\n');
    document.write('<PARAM NAME="offsbtext" VALUE="GTAC">\n');
    document.write('<PARAM NAME="maindesc0" VALUE="GTAC">\n');
    document.write('<PARAM NAME="maindesc1" VALUE="Search">\n');
    document.write('<PARAM NAME="maindesc2" VALUE="U.S. Phone Menu">\n');
    document.write('<PARAM NAME="maindesc3" VALUE="Call Handling">\n');
    document.write('<PARAM NAME="maindesc4" VALUE="Newsgroups">\n');
    document.write('<PARAM NAME="maindesc5" VALUE="Certification">\n');
    document.write('<PARAM NAME="maindesc6" VALUE="Downloads">\n');
    document.write('<PARAM NAME="maindesc7" VALUE="Documentation">\n');
    document.write('<PARAM NAME="maindesc8" VALUE="Contact GTAC">\n');
    document.write('<PARAM NAME="maindesc9" VALUE="GTAC Services">\n');
    document.write('<PARAM NAME="maindesc10" VALUE="Licensing">\n');
    document.write('<PARAM NAME="maindesc11" VALUE="WebKey FAQ">\n');
    document.write('<PARAM NAME="maindesc12" VALUE="DVD Media Program">\n');
    document.write('<PARAM NAME="desc1-0" VALUE="About Solution Center">\n');
    document.write('<PARAM NAME="desc1-1" VALUE="New Account">\n');
    document.write('<PARAM NAME="desc1-2" VALUE="Search Solution Center">\n');
    document.write('<PARAM NAME="desc3-0" VALUE="IR Creation">\n');
    document.write('<PARAM NAME="desc3-1" VALUE="IR Status">\n');
    document.write('<PARAM NAME="desc4-0" VALUE="Using Outlook Express">\n');
    document.write('<PARAM NAME="desc4-1" VALUE="BBS">\n');
    document.write('<PARAM NAME="desc4-2" VALUE="Open Forum">\n');
    document.write('<PARAM NAME="desc6-0" VALUE="FTP Server">\n');
    document.write('<PARAM NAME="desc7-0" VALUE="Camand">\n');
    document.write('<PARAM NAME="desc7-1" VALUE="Common Licensing">\n');
    document.write('<PARAM NAME="desc7-2" VALUE="Cortona3d">\n');
    document.write('<PARAM NAME="desc7-3" VALUE="Factory">\n');
    document.write('<PARAM NAME="desc7-4" VALUE="Femap">\n');
    document.write('<PARAM NAME="desc7-5" VALUE="Grip">\n');
    document.write('<PARAM NAME="desc7-6" VALUE="I-deas">\n');
    document.write('<PARAM NAME="desc7-7" VALUE="Imageware">\n');
    document.write('<PARAM NAME="desc7-8" VALUE="Jack">\n');
    document.write('<PARAM NAME="desc7-9" VALUE="Newsletter">\n');
    document.write('<PARAM NAME="desc7-10" VALUE="NX">\n');
    document.write('<PARAM NAME="desc7-11" VALUE="NX Nastran">\n');
    document.write('<PARAM NAME="desc7-12" VALUE="PLM Open">\n');
    document.write('<PARAM NAME="desc7-13" VALUE="Slate">\n');
    document.write('<PARAM NAME="desc7-14" VALUE="Smartcam">\n');
    document.write('<PARAM NAME="desc7-15" VALUE="Solid Edge">\n');
    document.write('<PARAM NAME="desc7-16" VALUE="Teamcenter">\n');
    document.write('<PARAM NAME="desc7-16-0" VALUE="Community">\n');
    document.write('<PARAM NAME="desc7-16-1" VALUE="Engineering">\n');
    document.write('<PARAM NAME="desc7-16-2" VALUE="Enterprise">\n');
    document.write('<PARAM NAME="desc7-16-3" VALUE="Express">\n');
    document.write('<PARAM NAME="desc7-16-4" VALUE="Global Services">\n');
    document.write('<PARAM NAME="desc7-16-5" VALUE="Link">\n');
    document.write('<PARAM NAME="desc7-16-6" VALUE="MRO">\n');
    document.write('<PARAM NAME="desc7-16-7" VALUE="Portfolio Management">\n');
    document.write('<PARAM NAME="desc7-16-8" VALUE="Project">\n');
    document.write('<PARAM NAME="desc7-16-9" VALUE="Reporting/Analytics">\n');
    document.write('<PARAM NAME="desc7-16-10" VALUE="SRM">\n');
    document.write('<PARAM NAME="desc7-16-11" VALUE="Systems Engineering">\n');
    document.write('<PARAM NAME="desc7-16-12" VALUE="Teamcenter">\n');
    document.write('<PARAM NAME="desc7-16-13" VALUE="Visualization">\n');
    document.write('<PARAM NAME="desc7-17" VALUE="Tecnomatix">\n');
    document.write('<PARAM NAME="desc7-18" VALUE="Unigraphics Archive">\n');
    document.write('<PARAM NAME="desc8-0" VALUE="By Phone">\n');
    document.write('<PARAM NAME="desc8-1" VALUE="Availability">\n');
    document.write('<PARAM NAME="desc8-2" VALUE="Selection Guide">\n');
    document.write('<PARAM NAME="desc9-0" VALUE="Services Guide">\n');
    document.write('<PARAM NAME="desc9-1" VALUE="Data Exchange">\n');
    document.write('<PARAM NAME="desc9-2" VALUE="E-mail Subscription">\n');
    document.write('<PARAM NAME="desc10-0" VALUE="License FAQ">\n');
    document.write('<PARAM NAME="desc10-1" VALUE="Current License">\n');
    document.write('<PARAM NAME="desc10-2" VALUE="Emergency License">\n');
    document.write('<PARAM NAME="desc10-3" VALUE="Product Passwords">\n');
    document.write('<PARAM NAME="desc10-4" VALUE="Common Licensing">\n');
    document.write('<PARAM NAME="desc10-5" VALUE="Register CID">\n');
    document.write('<PARAM NAME="desc10-6" VALUE="Download CID Utility">\n');
    document.write('<PARAM NAME="desturl1-0" VALUE="http://support.ugs.com/general/solution_center.shtml">\n');
    document.write('<PARAM NAME="desturl1-1" VALUE="https://plmapps.ugs.com/webkey">\n');
    document.write('<PARAM NAME="desturl1-2" VALUE="http://uganswer.ugs.com/qcksrch.stm">\n');
    document.write('<PARAM NAME="desturl3-0" VALUE="http://webtac.ugs.com/logir">\n');
    document.write('<PARAM NAME="desturl3-1" VALUE="http://webtac.ugs.com/qtac">\n');
    document.write('<PARAM NAME="desturl4-0" VALUE="http://support.ugs.com/general/newsgroup_tips.shtml">\n');
    document.write('<PARAM NAME="desturl4-1" VALUE="http://bbsnotes.ugs.com">\n');

if (browser == "Netscape")
{
    document.write('<PARAM NAME="desturl4-2" VALUE="javascript:gotoFORUM()">\n');
}
else
{
    document.write('<PARAM NAME="desturl4-2" VALUE="news://openforum.ugs.com">\n');
}
    document.write('<PARAM NAME="desturl6-0" VALUE="http://ftp.ugs.com">\n');
    document.write('<PARAM NAME="desturl7-0" VALUE="http://support.ugs.com/general/camand.shtml">\n');
    document.write('<PARAM NAME="desturl7-1" VALUE="http://support.ugs.com/docs/common_license/">\n');
    document.write('<PARAM NAME="desturl7-2" VALUE="http://support.ugs.com/docs/cortona3d/">\n');
    document.write('<PARAM NAME="desturl7-3" VALUE="http://support.ugs.com/docs/e-factory/">\n');
    document.write('<PARAM NAME="desturl7-4" VALUE="http://support.ugs.com/docs/femap/">\n');
    document.write('<PARAM NAME="desturl7-5" VALUE="http://support.ugs.com/docs/ug/griplib/intranet/grip/www.index.html">\n');
    document.write('<PARAM NAME="desturl7-6" VALUE="http://support.ugs.com/docs/i-deas/">\n');
    document.write('<PARAM NAME="desturl7-7" VALUE="http://support.ugs.com/docs/imageware/">\n');
    document.write('<PARAM NAME="desturl7-8" VALUE="http://support.ugs.com/docs/jack/">\n');
    document.write('<PARAM NAME="desturl7-9" VALUE="http://support.ugs.com/docs/newsletter.shtml">\n');
    document.write('<PARAM NAME="desturl7-10" VALUE="http://support.ugs.com/docs/nx/">\n');
    document.write('<PARAM NAME="desturl7-11" VALUE="http://support.ugs.com/docs/nastran/">\n');
    document.write('<PARAM NAME="desturl7-12" VALUE="http://support.ugs.com/docs/plm_open/">\n');
    document.write('<PARAM NAME="desturl7-13" VALUE="http://support.ugs.com/docs/slate/">\n');
    document.write('<PARAM NAME="desturl7-14" VALUE="http://support.ugs.com/general/smartcam.shtml">\n');
    document.write('<PARAM NAME="desturl7-15" VALUE="http://support.ugs.com/docs/se/">\n');
    document.write('<PARAM NAME="desturl7-16-0" VALUE="http://support.ugs.com/docs/tc_com/">\n');
    document.write('<PARAM NAME="desturl7-16-1" VALUE="http://support.ugs.com/docs/tc_eng/">\n');
    document.write('<PARAM NAME="desturl7-16-2" VALUE="http://support.ugs.com/docs/tc_ent/">\n');
    document.write('<PARAM NAME="desturl7-16-3" VALUE="http://support.ugs.com/docs/tc_exp/">\n');
    document.write('<PARAM NAME="desturl7-16-4" VALUE="http://support.ugs.com/docs/tc_gs/">\n');
    document.write('<PARAM NAME="desturl7-16-5" VALUE="http://support.ugs.com/docs/tc_lnk/">\n');
    document.write('<PARAM NAME="desturl7-16-6" VALUE="http://support.ugs.com/docs/tc_mro/">\n');
    document.write('<PARAM NAME="desturl7-16-7" VALUE="http://support.ugs.com/docs/tc_pm/">\n');
    document.write('<PARAM NAME="desturl7-16-8" VALUE="http://support.ugs.com/docs/tc_proj/">\n');
    document.write('<PARAM NAME="desturl7-16-9" VALUE="http://support.ugs.com/docs/tc_report/">\n');
    document.write('<PARAM NAME="desturl7-16-10" VALUE="http://support.ugs.com/docs/tc_srm/">\n');
    document.write('<PARAM NAME="desturl7-16-11" VALUE="http://support.ugs.com/docs/tc_se/">\n');
    document.write('<PARAM NAME="desturl7-16-12" VALUE="http://support.ugs.com/docs/teamcenter/">\n');
    document.write('<PARAM NAME="desturl7-16-13" VALUE="http://support.ugs.com/docs/tc_vis/">\n');
    document.write('<PARAM NAME="desturl7-17" VALUE="http://support.ugs.com/docs/tecnomatix/">\n');
    document.write('<PARAM NAME="desturl7-18" VALUE="http://support.ugs.com/docs/ug/">\n');
    document.write('<PARAM NAME="desturl8-0" VALUE="http://support.ugs.com/services/global_number.pdf">\n');
    document.write('<PARAM NAME="desturl8-1" VALUE="http://support.ugs.com/general/hours.shtml">\n');
    document.write('<PARAM NAME="desturl8-2" VALUE="http://support.ugs.com/general/selection_guide.pdf">\n');
    document.write('<PARAM NAME="desturl9-0" VALUE="http://support.ugs.com/services/GTAC_Support_Services_Guide.pdf">\n');
    document.write('<PARAM NAME="desturl9-1" VALUE="http://support.ugs.com/services/data_exchange.shtml">\n');
    document.write('<PARAM NAME="desturl9-2" VALUE="http://support.ugs.com/general/email.shtml">\n');
    document.write('<PARAM NAME="desturl10-0" VALUE="http://support.ugs.com/license/license_faq.pdf">\n');
    document.write('<PARAM NAME="desturl10-1" VALUE="http://www2.ugs.com/Support/LicenseManagement">\n');
    document.write('<PARAM NAME="desturl10-2" VALUE="http://www2.ugs.com/Support/LicenseManagement">\n');
    document.write('<PARAM NAME="desturl10-3" VALUE="http://support.ugs.com/paswd/index.shtml">\n');
    document.write('<PARAM NAME="desturl10-4" VALUE="http://support.ugs.com/license/CommonLicense">\n');
    document.write('<PARAM NAME="desturl10-5" VALUE="http://www.ugs.com/Support/LicenseManagement">\n');
    document.write('<PARAM NAME="desturl10-6" VALUE="http://ftp.ugs.com/ugs_licensing/CID/">\n');
    document.write('<PARAM NAME="hlsubtextonly" VALUE="false">\n');
    document.write('<PARAM NAME="loadwhere" VALUE="_self">\n');
    document.write('<PARAM NAME="mbgcolor" VALUE="204,204,204">\n');
    document.write('<PARAM NAME="mbgonmenusonly" VALUE="false">\n');
    document.write('<PARAM NAME="mdesturl0" VALUE="http://support.ugs.com/">\n');
    document.write('<PARAM NAME="mdesturl2" VALUE="http://support.ugs.com/general/selection_guide.pdf">\n');
    document.write('<PARAM NAME="mdesturl5" VALUE="http://support.ugs.com/online_library/certification/">\n');
    document.write('<PARAM NAME="mdesturl11" VALUE="http://support.ugs.com/webkey_faq.pdf">\n');
    document.write('<PARAM NAME="mdesturl12" VALUE="http://support.ugs.com/DVD/">\n');
    document.write('<PARAM NAME="mfont" VALUE="Helvetica, plain, 11">\n');
    document.write('<PARAM NAME="mheight" VALUE="18">\n');
    document.write('<PARAM NAME="mhltextcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="muhltextcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="mhloutcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="muhloutcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="miconindent" VALUE="1">\n');
    document.write('<PARAM NAME="mindent" VALUE="12">\n');
    document.write('<PARAM NAME="mtextcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="mtilebg" VALUE="false">\n');
    document.write('<PARAM NAME="rfromoff" VALUE="false">\n');
    document.write('<PARAM NAME="s_color" VALUE="204,204,204">\n');
    document.write('<PARAM NAME="s_color0" VALUE="204,204,204">\n');
    document.write('<PARAM NAME="s_hltextcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="s_hltextcolor0" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="s_uhltextcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="s_indent" VALUE="4">\n');
    document.write('<PARAM NAME="s_outcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="s_textcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="s_textcolor0" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="s_hloutcolor" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="s_hloutcolor0" VALUE="0,0,0">\n');
    document.write('<PARAM NAME="subfont" VALUE="Helvetica, plain, 11">\n');
    document.write('<PARAM NAME="subheight" VALUE="12">\n');
    document.write('<PARAM NAME="subiconindent" VALUE="-2">\n');
    document.write('<PARAM NAME="subindent" VALUE="6">\n');
    document.write('<PARAM NAME="topoffset" VALUE="1">\n');
    document.write('</APPLET>\n');
}

