<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -8,6 +8,7 @@
 
 //13932 SIMP test ticket
 addMMButton();
+addSearchOptions();
 
 // Add button to copy information to paste into Meeting Maker (MM) job
 function addMMButton() {
@@ -22,6 +23,27 @@ function addMMButton() {
 	section.appendChild(button);
 }
 
+function addSearchOptions() {
+	console.log(&quot;addSearchOptions: enter&quot;);
+
+	var searchOptions=document.createElement(&quot;select&quot;);
+	searchOptions.id=&quot;quickAdvancedSearchDropDown&quot;;
+	searchOptions.addEventListener(&quot;change&quot;, doQuickAdvancedSearch, true);
+	searchOptions.options[0] = new Option(&quot;Select an advanced option&quot;, &quot;2nd text&quot;);
+	searchOptions.options[1] = new Option(&quot;Ticket Number&quot;, &quot;2nd text&quot;);
+	searchOptions.options[2] = new Option(&quot;Customer UH Username&quot;, &quot;2nd text&quot;);
+	searchOptions.options[3] = new Option(&quot;Last Name&quot;, &quot;2nd text&quot;);
+	searchOptions.options[4] = new Option(&quot;First Name&quot;, &quot;2nd text&quot;);
+	searchOptions.options[5] = new Option(&quot;ITS Username&quot;, &quot;2nd text&quot;);
+	document.getElementById(&quot;tcktFilterFrm&quot;).appendChild(searchOptions);
+}
+
+// Add radio buttons to choose search type
+function doQuickAdvancedSearch() {
+	alert(&quot;doQuickAdvancedSearch()&quot;);
+//	alert(getValueById(&quot;search_str&quot;));
+}
+
 // Show the Meeting Maker information
 function showMMInfo() {
 	//*</diff>
      <filename>jason_simp.user.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>929772ffef1920d3cce6f141c59d7533bedcb098</id>
    </parent>
  </parents>
  <author>
    <name>Jason Axelson (USB)</name>
    <email>jason.axelson@gmail.com</email>
  </author>
  <url>http://github.com/axelson/ITS/commit/2fc5057b3ffcf61e348b0620b5da18b044308edf</url>
  <id>2fc5057b3ffcf61e348b0620b5da18b044308edf</id>
  <committed-date>2009-06-04T14:41:38-07:00</committed-date>
  <authored-date>2009-06-04T14:41:38-07:00</authored-date>
  <message>Initial support for a drop-down box</message>
  <tree>f18cfeb9997fc957d2024a5e424ed072504448f0</tree>
  <committer>
    <name>Jason Axelson (USB)</name>
    <email>jason.axelson@gmail.com</email>
  </committer>
</commit>
