	  function showDetails(target){

	  var problems = '';

//	  if(navigator.platform != 'Win32' && navigator.platform!='UNIX'){
//	    problems += '<dt>Operating System</dt><dd>Our scripts have only been developed for and tested on Windows and Unix platform. You are using '+navigator.platform+', which may not run everything on this site well.</dd>';

//	  }

	  if(document.getElementById("helpForm")){
	    theForm = document.getElementById("helpForm");
		if(theForm.platform){
		   theForm.platform.value = navigator.platform;
		}

	  }
	     string='<h4>Your Browser</h4><span style="font-size: 10px"><strong>'+navigator.userAgent+'</strong></span><table class="border" rules="cols" style="font-size: 10px; width: 100%"><caption>Details</caption><colgroup><col/></colgoup><colgroup><col style="border-left-style: solid"/></colgroup><tr><td>Code Name</td><td>'+navigator.appCodeName+'</td></tr><tr><td>Version</td><td>'+navigator.appVersion+'</td></tr><tr><td>OS Platform</td><td>'+navigator.platform+'</td></tr><tr><td>JavaScript</td><td>Yes</td></tr></table>';
	  if(problems != ''){
	    string+='<h3>Possible Problems</h3><dl>'+problems+'</dl>';
	  } else {string += 'As far as we can tell, your JavaScript should work fine on our site. If you are having problems submitting forms, please fill out the form below and send it to us so we can look into the problem.';}
      if(document.getElementById("information")){
	     document.getElementById("information").innerHTML = string;
	  }

	  }