Link to home
Start Free TrialLog in
Avatar of cfrericks
cfrericks

asked on

Intranet website ToolBar isn't loading in IE

Hi all,
My question is in regards to a disfunctional toolbar on a website within my companies intranet.  The toolbar does not load on my computer but it does load on everyone elses workstations that have been configured similarly.  The bar is essential because it has buttons for functions that allow me to save my work and log out of the site.  I've uploaded a screenshot (http://netfiles.uiuc.edu/cfrerick/shared/ToolBar.tif) and I've pasted the html that I get when I "view source" in IE.  I see that the toolbar is probably coded with javascript and i'm wondering if the problem has anything to do with the version of java I have installed.  I don't have very much knowledge or experience with javascript, so this is the only possible fix I can come up with.  I'd have to get the IT people here to install the newest java, but i'm not confident that will be the solution.  

Do you guys have any ideas of what's going on?  Your time and help is greatly appreciated.

-Curt


HTML:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<STYLE type="text/css">A.tabs { text-decoration: none};#tab1{position:absolute};#tab2{position:absolute; visibility:hidden};#tab3{position:absolute; visibility:hidden};#tab4{position:absolute; visibility:hidden};#tab5{position:absolute; visibility:hidden};#tab21{position:absolute; visibility:hidden};#tab22{position:absolute; visibility:hidden};</STYLE>
<script language="JavaScript" type="text/javascript">
<!--
window.status=("LOADING IN PROGRESS...");

var currtab = "tab1";
var signtab = "tab21";

// Original tab function for moving between tabs --> Nicole Lynn
function showtab( tabnum )
{
      tabname = "tab" + tabnum
      if ( tabname != currtab )
      {
            if (window.document.layers)
            {
                 handle="window.document.layers";
                 stylevar="";
            }
            else
            {
                  handle="document.all";
                  stylevar=".style";
            }
// Added tab functionality for moving through sub tabs --> Antoine pickett
            if (tabnum == 21 || tabnum ==22)
            {
                  if (tabnum == 21) // Handle subtab selection visibility
                  {
                        eval(handle+'["tab22"]'+stylevar+'.visibility = "hidden"');
                       eval(handle+'["'+tabname+'"]'+stylevar+'.visibility = "visible"');
                       signtab = "tab" + tabnum;
                  }
                  else
                  {
                        eval(handle+'["tab21"]'+stylevar+'.visibility = "hidden"');
                       eval(handle+'["'+tabname+'"]'+stylevar+'.visibility = "visible"');
                       signtab = "tab" + tabnum;
                  }
            }
            else
            {
                  if (tabnum == 2) // Handle tab two selection
                  {
                        eval(handle+'["'+currtab+'"]'+stylevar+'.visibility = "hidden"');
                        eval(handle+'["'+tabname+'"]'+stylevar+'.visibility = "visible"');
                        currtab = tabname;
                        if(signtab == "tab21")
                        {
                              eval(handle+'["tab21"]'+stylevar+'.visibility = "visible"');
                              eval(handle+'["tab22"]'+stylevar+'.visibility = "hidden"');
                        }
                        else
                        {
                              eval(handle+'["tab22"]'+stylevar+'.visibility = "visible"');
                              eval(handle+'["tab21"]'+stylevar+'.visibility = "hidden"');
                        }
                  }
                  else
                  {
                 eval(handle+'["'+currtab+'"]'+stylevar+'.visibility = "hidden"');
                 eval(handle+'["'+tabname+'"]'+stylevar+'.visibility = "visible"');
                 currtab = tabname;
                 eval(handle+'["tab21"]'+stylevar+'.visibility = "hidden"');
                 eval(handle+'["tab22"]'+stylevar+'.visibility = "hidden"');
                 }
           }
     }
}

// Manages print of tabs so to not show scroll bar and print all information
function printDiv ()
{
  if (document.all && window.print)
      {
            if (currtab == "tab2" && signtab == "tab21")
            {
                 eval(handle+'["tab21"]'+stylevar+'.overflow = "visible"');
                 window.print();
                  eval(handle+'["tab21"]'+stylevar+'.overflow = "auto"');       
            }
            else if (currtab == "tab2" && signtab == "tab22")
            {
                  eval(handle+'["tab22"]'+stylevar+'.overflow = "visible"');
                 window.print();
                  eval(handle+'["tab22"]'+stylevar+'.overflow = "auto"');
            }
            else
            {
                      window.print();
              }
       }
}


//*****************************************************************************************
// Name:            validateForm
//
// Description:      This function validates form fields based on title Required or
//                              Date. It also compares certain dates.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************
function validate() {
            var form = document.forms[0];      
            for (var i = 0; i <form.elements.length; i++)
            {
                  var fname = form.elements[i].name;
                  var ftype=form.elements[i].type;
                  var ftitle=form.elements[i].title;
                  //alert(ftitle);

                  if(ftitle=='Required')
                  {
                              if ( isBlank(form.elements[i].value) )
                        {
                              alert(fname + ' is blank. Please fill out all information to continue.');                              
                              form.elements[i].focus();            
                              return false;
                        }
                  }            
                  if(ftitle=='Date'   &&  ( !isBlank(form.elements[i].value) ) )
                  {                               
                        if (!isValidDate(form.elements[i].value))
                        {
                                    alert( 'All Dates must be in one of the following formats:\n' +
                              '1. MMDD\n' +
                              '2. MM/DD/YY\n' +
                              '3. MM/DD\n' +
                              '4. MM/DD/YYYY\n\n' +
                              'Please enter a valid date.');
                       form.elements[i].focus();
                            return false;                            
                        }       
      form.elements[i].value=formatDate(form.elements[i].value)
                  }                  
            }                  
            return true;
      }
//*****************************************************************************************
// Name:            validateSignDetail
//
// Description:      This function validates the user entered a value into
//                              Rdb Cab Size Other and LED Pixels Other fields if other is chosen.
//
// Returns:           True if other is chosen and data is present.
//                              False if other is chosen and data is not present.
//
//Added by Nicole Lynn 09/15/2004.
//*****************************************************************************************
function validateSignDetail() {
      var doc = document.forms[0];      
      if(doc.RdbCabSize1.options[doc.RdbCabSize1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbCabSize1HFt.value)) {
                      alert("Other was selected for Rdb Size, Sign 1. Please fill out height and width information for Rdb Size, Sign 1 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbCabSize1HFt.focus();
                  return false;
            };
      };
      if(doc.RdbCabSize2.options[doc.RdbCabSize2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbCabSize2HFt.value)) {
                      alert("Other was selected for Rdb Size, Sign 2. Please fill out height and width information for Rdb Size, Sign 2 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbCabSize2HFt.focus();
                  return false;
            };
      };
      if(doc.RdbCabSize3.options[doc.RdbCabSize3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbCabSize3HFt.value)) {
                      alert("Other was selected for Rdb Size, Sign 3. Please fill out height and width information for Rdb Size, Sign 3 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbCabSize1HFt.focus();
                  return false;
            };
      };
      if(doc.RdbCabSize4.options[doc.RdbCabSize4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbCabSize4HFt.value)) {
                  alert("Other was selected for Rdb Size, Sign 4. Please fill out height and width information for Rdb Size, Sign 4 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbCabSize4HFt.focus();
                  return false;
            };
      };
      if(doc.RdbColor1.options[doc.RdbColor1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbColorOther1.value)) {
                      alert("Other was selected for LED RDB Color, Sign 1. Please fill out information for LED RDB Color, Sign 1 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbColorOther1.focus();
                  return false;
            };
      };
      if(doc.RdbColor2.options[doc.RdbColor2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbColorOther2.value)) {
                      alert("Other was selected for LED RDB Color, Sign 2. Please fill out information for LED RDB Color, Sign2 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbColorOther2.focus();
                  return false;
            };
      };
      if(doc.RdbColor3.options[doc.RdbColor3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbColorOther3.value)) {
                      alert("Other was selected for LED RDB Color, Sign 3. Please fill out information for LED RDB Color, Sign 3 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbColorOther3.focus();
                  return false;
            };
      };
      if(doc.RdbColor4.options[doc.RdbColor4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RdbColorOther4.value)) {
                      alert("Other was selected for LED RDB Color, Sign 4. Please fill out information for LED RDB Color, Sign 4 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.RdbColorOther4.focus();
                  return false;
            };
      };
      if(doc.LEDRes1.options[doc.LEDRes1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDResOther1.value)) {
                      alert("Other was selected for LED Monochrome Resolution, Sign 1. Please fill out information for LED Monochrome Resolution, Sign 1 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDResOther1.focus();
                  return false;
            };
      };
      if(doc.LEDRes2.options[doc.LEDRes2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDResOther2.value)) {
                      alert("Other was selected for LED Monochrome Resolution, Sign 2. Please fill out information for LED Monochrome Resolution, Sign 2 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDResOther2.focus();
                  return false;
            };
      };
      if(doc.LEDRes3.options[doc.LEDRes3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDResOther3.value)) {
                      alert("Other was selected for LED Monochrome Resolution, Sign 3. Please fill out information for LED Monochrome Resolution, Sign 3 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDResOther3.focus();
                  return false;
            };
      };
      if(doc.LEDRes4.options[doc.LEDRes4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDResOther4.value)) {
                      alert("Other was selected for LED Monochrome Resolution, Sign 4. Please fill out information for LED Monochrome Resolution, Sign 4 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDResOther4.focus();
                  return false;
            };
      };
      if(doc.LEDColorRes1.options[doc.LEDColorRes1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDColorResOther1.value)) {
                      alert("Other was selected for LED Full Color Resolution, Sign 1. Please fill out information for LED Full Color Resolution, Sign 1 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDColorResOther1.focus();
                  return false;
            };
      };
      if(doc.LEDColorRes2.options[doc.LEDColorRes2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDColorResOther2.value)) {
                      alert("Other was selected for LED Full Color Resolution, Sign 2. Please fill out information for LED Full Color Resolution, Sign 2 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDColorResOther2.focus();
                  return false;
            };
      };
      if(doc.LEDColorRes3.options[doc.LEDColorRes3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDColorResOther3.value)) {
                      alert("Other was selected for LED Full Color Resolution, Sign 3. Please fill out information for LED Full Color Resolution, Sign 3 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDColorResOther3.focus();
                  return false;
            };
      };
      if(doc.LEDColorRes4.options[doc.LEDColorRes4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.LEDColorResOther4.value)) {
                      alert("Other was selected for LED Full Color Resolution, Sign 4. Please fill out information for LED Full Color Resolution, Sign 4 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.LEDColorResOther4.focus();
                  return false;
            };
      };
      if(doc.Pixels1.options[doc.Pixels1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.Pixels1H.value)) {
                      alert("Other was selected for LED Monochrome Pixels, Sign 1. Please fill out dimensions for LED Monochrome Pixels, Sign 1 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.Pixels1H.focus();
                  return false;
            };
      };
      if(doc.Pixels2.options[doc.Pixels2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.Pixels2H.value)) {
                      alert("Other was selected for LED Monochrome Pixels, Sign 2. Please fill out dimensions for LED Monochrome Pixels, Sign 2 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.Pixels2H.focus();
                  return false;
            };
      };
      if(doc.Pixels3.options[doc.Pixels3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.Pixels3H.value)) {
                      alert("Other was selected for LED Monochrome Pixels, Sign 3. Please fill out dimensions for LED Monochrome Pixels, Sign 3 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.Pixels3H.focus();
                  return false;
            };
      };
      if(doc.Pixels4.options[doc.Pixels4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.Pixels4H.value)) {
                      alert("Other was selected for LED Monochrome Pixels, Sign 4. Please fill out dimensions for LED Monochrome Pixels, Sign 4 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.Pixels4H.focus();
                  return false;
            };
      };
      if(doc.PixelsColor1.options[doc.PixelsColor1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.PixelsColor1H.value)) {
                      alert("Other was selected for LED Full Color Pixels, Sign 1. Please fill out dimensions for LED Full Color Pixels, Sign 1 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.PixelsColor1H.focus();
                  return false;
            };
      };
      if(doc.PixelsColor2.options[doc.PixelsColor2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.PixelsColor2H.value)) {
                      alert("Other was selected for LED Full Color Pixels, Sign 2. Please fill out dimensions for LED Full Color Pixels, Sign 2 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.PixelsColor2H.focus();
                  return false;
            };
      };
      if(doc.PixelsColor3.options[doc.PixelsColor3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.PixelsColor3H.value)) {
                      alert("Other was selected for LEDFull Color Pixels, Sign 3. Please fill out dimensions for LED Full Color Pixels, Sign 3 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.PixelsColor3H.focus();
                  return false;
            };
      };
      if(doc.PixelsColor4.options[doc.PixelsColor4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.PixelsColor4H.value)) {
                      alert("Other was selected for LED Full Colors Pixels, Sign 4. Please fill out dimensions for LED Full Color Pixels, Sign 4 to continue.");                  
                  doc.SaveMode.value = "N";
                  doc.PixelsColor4H.focus();
                  return false;
            };
      };
      for (var i=0; i < doc.LEDRestriction1.length; i++) {
            if (doc.LEDRestriction1[i].checked) {
                  if ((doc.LEDRestriction1[i].value == "Other") && (isBlank(doc.LEDRestOther1.value))) {
                                  alert("Other was selected for Operating Requirements, Sign 1. Please fill out information for Operating Requirements, Sign 1 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDRestOther1.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.LEDRestriction2.length; i++) {
            if (doc.LEDRestriction2[i].checked) {
                  if ((doc.LEDRestriction2[i].value == "Other") && (isBlank(doc.LEDRestOther2.value))) {
                                  alert("Other was selected for Operating Requirements, Sign 2. Please fill out information for Operating Requirements, Sign 2 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDRestOther2.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.LEDRestriction3.length; i++) {
            if (doc.LEDRestriction3[i].checked) {
                  if ((doc.LEDRestriction3[i].value == "Other") && (isBlank(doc.LEDRestOther3.value))) {
                                  alert("Other was selected for Operating Requirements, Sign 3. Please fill out information for Operating Requirements, Sign 3 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDRestOther3.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.LEDRestriction4.length; i++) {
            if (doc.LEDRestriction4[i].checked) {
                  if ((doc.LEDRestriction4[i].value == "Other") && (isBlank(doc.LEDRestOther4.value))) {
                                  alert("Other was selected for Operating Requirements, Sign 4. Please fill out information for Operating Requirements, Sign 4 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDRestOther4.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ColorRestriction1.length; i++) {
            if (doc.ColorRestriction1[i].checked) {
                  if ((doc.ColorRestriction1[i].value == "Other") && (isBlank(doc.ColorRestrictExpl1.value))) {
                                  alert("Other was selected for Color Restrictions, Sign 1. Please fill out information for Color Restrictions, Sign 1 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.ColorRestrictExpl1.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ColorRestriction2.length; i++) {
            if (doc.ColorRestriction2[i].checked) {
                  if ((doc.ColorRestriction2[i].value == "Other") && (isBlank(doc.ColorRestrictExpl2.value))) {
                                  alert("Other was selected for Color Restrictions, Sign 2. Please fill out information for Color Restrictions, Sign 2 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.ColorRestrictExpl2.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ColorRestriction3.length; i++) {
            if (doc.ColorRestriction3[i].checked) {
                  if ((doc.ColorRestriction3[i].value == "Other") && (isBlank(doc.ColorRestrictExpl3.value))) {
                                  alert("Other was selected for Color Restrictions, Sign 3. Please fill out information for Color Restrictions, Sign 3 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.ColorRestrictExpl3.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ColorRestriction4.length; i++) {
            if (doc.ColorRestriction4[i].checked) {
                  if ((doc.ColorRestriction4[i].value == "Other") && (isBlank(doc.ColorRestrictExpl4.value))) {
                                  alert("Other was selected for Color Restrictions, Sign 4. Please fill out information for Color Restrictions, Sign 4 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.ColorRestrictExpl4.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.LEDAnimation1.length; i++) {
            if (doc.LEDAnimation1[i].checked) {
                  if ((doc.LEDAnimation1[i].value == "Other") && (isBlank(doc.LEDAnimationOther1.value))) {
                                  alert("Other was selected for Animation, Sign 1. Please fill out information for Animation, Sign 1 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDAnimationOther1.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.LEDAnimation2.length; i++) {
            if (doc.LEDAnimation2[i].checked) {
                  if ((doc.LEDAnimation2[i].value == "Other") && (isBlank(doc.LEDAnimationOther2.value))) {
                                  alert("Other was selected for Animation, Sign 2. Please fill out information for Animation, Sign 2 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDAnimationOther2.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.LEDAnimation3.length; i++) {
            if (doc.LEDAnimation3[i].checked) {
                  if ((doc.LEDAnimation3[i].value == "Other") && (isBlank(doc.LEDAnimationOther3.value))) {
                                  alert("Other was selected for Animation, Sign 3. Please fill out information for Animation, Sign 3 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDAnimationOther3.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.LEDAnimation4.length; i++) {
            if (doc.LEDAnimation4[i].checked) {
                  if ((doc.LEDAnimation4[i].value == "Other") && (isBlank(doc.LEDAnimationOther4.value))) {
                                  alert("Other was selected for Animation, Sign 4. Please fill out information for Animation, Sign 4 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.LEDAnimationOther4.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.HrRestrictionInd1.length; i++) {
            if (doc.HrRestrictionInd1[i].checked) {
                  if ((doc.HrRestrictionInd1[i].value == "With Restrictions") && (isBlank(doc.HrRestriction1.value))) {
                                  alert("With Restrictions was selected for 24 Hr Op Allowed, Sign 1. Please fill out information for 24 Hr OpAllowed, Sign 1 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.HrRestriction1.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.HrRestrictionInd2.length; i++) {
            if (doc.HrRestrictionInd2[i].checked) {
                  if ((doc.HrRestrictionInd2[i].value == "With Restrictions") && (isBlank(doc.HrRestriction2.value))) {
                                  alert("With Restrictions was selected for 24 Hr Op Allowed, Sign 2. Please fill out information for 24 Hr OpAllowed, Sign 2 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.HrRestriction2.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.HrRestrictionInd3.length; i++) {
            if (doc.HrRestrictionInd3[i].checked) {
                  if ((doc.HrRestrictionInd3[i].value == "With Restrictions") && (isBlank(doc.HrRestriction3.value))) {
                                  alert("With Restrictions was selected for 24 Hr Op Allowed, Sign 3. Please fill out information for 24 Hr OpAllowed, Sign 3 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.HrRestriction3.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.HrRestrictionInd4.length; i++) {
            if (doc.HrRestrictionInd4[i].checked) {
                  if ((doc.HrRestrictionInd4[i].value == "With Restrictions") && (isBlank(doc.HrRestriction4.value))) {
                                  alert("With Restrictions was selected for 24 Hr Op Allowed, Sign 4. Please fill out information for 24 Hr OpAllowed, Sign 4 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.HrRestriction4.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ComType1.length; i++) {
            if (doc.ComType1[i].checked) {
                  if ((doc.ComType1[i].value == "RF") && (isBlank(doc.RFCardType1.options[doc.RFCardType1.selectedIndex].text))) {
                                  alert("A Communication type of RF was selected for Sign 1. Please fill out information for RF CardType, Sign 1 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.RFCardTypeOther1.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ComType2.length; i++) {
            if (doc.ComType2[i].checked) {
                  if ((doc.ComType2[i].value == "RF") && (isBlank(doc.RFCardType2.options[doc.RFCardType2.selectedIndex].text))) {
                                  alert("A Communication type of RF was selected for Sign 2. Please fill out information for RF CardType, Sign 2 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.RFCardTypeOther2.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ComType3.length; i++) {
            if (doc.ComType3[i].checked) {
                  if ((doc.ComType3[i].value == "RF") && (isBlank(doc.RFCardType3.options[doc.RFCardType3.selectedIndex].text))) {
                                  alert("A Communication type of RF was selected for Sign 3. Please fill out information for RF CardType, Sign 3 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.RFCardTypeOther3.focus();
                              return false;
                  }
            }
      }
      for (var i=0; i < doc.ComType4.length; i++) {
            if (doc.ComType4[i].checked) {
                  if ((doc.ComType4[i].value == "RF") && (isBlank(doc.RFCardType4.options[doc.RFCardType4.selectedIndex].text))) {
                                  alert("A Communication type of RF was selected for Sign 4. Please fill out information for RF CardType, Sign 4 to continue.");                  
                              doc.SaveMode.value = "N";
                              doc.RFCardTypeOther4.focus();
                              return false;
                  }
            }
      }
      if(doc.RFCardType1.options[doc.RFCardType1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RFCardTypeOther1.value)) {
                      alert("Other was selected for RF Card Type, Sign 1. Please fill out information for RF Card Type, Sign 1 to continue.");
                  doc.SaveMode.value = "N";
                  doc.RFCardTypeOther1.focus();
                  return false;
            }
      }
      if(doc.RFCardType2.options[doc.RFCardType2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RFCardTypeOther2.value)) {
                      alert("Other was selected for RF Card Type, Sign 2. Please fill out information for RF Card Type, Sign 2 to continue.");
                  doc.SaveMode.value = "N";
                  doc.RFCardTypeOther2.focus();
                  return false;
            }
      }
      if(doc.RFCardType3.options[doc.RFCardType3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RFCardTypeOther3.value)) {
                      alert("Other was selected for RF Card Type, Sign 3. Please fill out information for RF Card Type, Sign 3 to continue.");
                  doc.SaveMode.value = "N";
                  doc.RFCardTypeOther3.focus();
                  return false;
            }
      }
      if(doc.RFCardType4.options[doc.RFCardType4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.RFCardTypeOther4.value)) {
                      alert("Other was selected for RF Card Type, Sign 4. Please fill out information for RF Card Type, Sign 4 to continue.");
                  doc.SaveMode.value = "N";
                  doc.RFCardTypeOther4.focus();
                  return false;
            }
      }
      if(doc.Software1.options[doc.Software1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.SoftwareOther1.value)) {
                      alert("Other was selected for Software, Sign 1. Please fill out information for Software, Sign 1 to continue.");
                  doc.SaveMode.value = "N";
                  doc.SoftwareOther1.focus();
                  return false;
            }
      }
      if(doc.Software2.options[doc.Software2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.SoftwareOther2.value)) {
                      alert("Other was selected for Software, Sign 2. Please fill out information for Software, Sign 2 to continue.");
                  doc.SaveMode.value = "N";
                  doc.SoftwareOther2.focus();
                  return false;
            }
      }
      if(doc.Software3.options[doc.Software3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.SoftwareOther3.value)) {
                      alert("Other was selected for Software, Sign 3. Please fill out information for Software, Sign 3 to continue.");
                  doc.SaveMode.value = "N";
                  doc.SoftwareOther3.focus();
                  return false;
            }
      }
      if(doc.Software4.options[doc.Software4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.SoftwareOther4.value)) {
                      alert("Other was selected for Software, Sign 4. Please fill out information for Software, Sign 4 to continue.");
                  doc.SaveMode.value = "N";
                  doc.SoftwareOther4.focus();
                  return false;
            }
      }
      if(doc.CPU1.options[doc.CPU1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.CPUOther1.value)) {
                      alert("Other was selected for CPU, Sign 1. Please fill out information for CPU, Sign 1 to continue.");
                  doc.SaveMode.value = "N";
                  doc.CPUOther1.focus();
                  return false;
            }
      }
      if(doc.CPU2.options[doc.CPU2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.CPUOther2.value)) {
                      alert("Other was selected for CPU, Sign 2. Please fill out information for CPU, Sign 2 to continue.");
                  doc.SaveMode.value = "N";
                  doc.CPUOther2.focus();
                  return false;
            }
      }
      if(doc.CPU3.options[doc.CPU3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.CPUOther3.value)) {
                      alert("Other was selected for CPU, Sign 3. Please fill out information for CPU, Sign 3 to continue.");
                  doc.SaveMode.value = "N";
                  doc.CPUOther3.focus();
                  return false;
            }
      }
      if(doc.CPU4.options[doc.CPU4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.CPUOther4.value)) {
                      alert("Other was selected for CPU, Sign 4. Please fill out information for CPU, Sign 4 to continue.");
                  doc.SaveMode.value = "N";
                  doc.CPUOther4.focus();
                  return false;
            }
      }
      if(doc.BaudType1.options[doc.BaudType1.selectedIndex].text == "Other") {                  
            if(isBlank(doc.BaudTypeOther1.value)) {
                      alert("Other was selected for Baud Type, Sign 1. Please fill out information for Baud Type, Sign 1 to continue.");
                  doc.SaveMode.value = "N";
                  doc.BaudTypeOther1.focus();
                  return false;
            }
      }
      if(doc.BaudType2.options[doc.BaudType2.selectedIndex].text == "Other") {                  
            if(isBlank(doc.BaudTypeOther2.value)) {
                      alert("Other was selected for Baud Type, Sign 2. Please fill out information for Baud Type, Sign 2 to continue.");
                  doc.SaveMode.value = "N";
                  doc.BaudTypeOther2.focus();
                  return false;
            }
      }
      if(doc.BaudType3.options[doc.BaudType3.selectedIndex].text == "Other") {                  
            if(isBlank(doc.BaudTypeOther3.value)) {
                      alert("Other was selected for Baud Type, Sign 3. Please fill out information for Baud Type, Sign 3 to continue.");
                  doc.SaveMode.value = "N";
                  doc.BaudTypeOther3.focus();
                  return false;
            }
      }
      if(doc.BaudType4.options[doc.BaudType4.selectedIndex].text == "Other") {                  
            if(isBlank(doc.BaudTypeOther4.value)) {
                      alert("Other was selected for Baud Type, Sign 4. Please fill out information for Baud Type, Sign 4 to continue.");
                  doc.SaveMode.value = "N";
                  doc.BaudTypeOther4.focus();
                  return false;
            }
      }
return true;
}
//*****************************************************************************************
// Name:            OpenNewCOWindow
//
// Description:      Action performed when user clicks the button Edit Change Order.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenNewCOWindow()
{
        var doc = document.forms[0];    
      var y = "../CO?openform&ParentUNID=" + doc.DocUNID.value + "~1~REQFlag";
      var newwin = window.open(y,'ChangeOrder','height=380,width=730 ,   left=28 , top=120 status=no,resizable=yes,scrollbars=yes');
       newwin.focus();
}

//*****************************************************************************************
// Name:            OpenNewPOWindow
//
// Description:      Action performed when user clicks the button Edit Purchase Order.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenNewPOWindow()
{
        var doc = document.forms[0];    
      var y = "../PO?openform&ParentUNID=" + doc.DocUNID.value + "~1~POFlag";
      var newwin = window.open(y,'PurchaseOrder','height=380,width=730 ,   left=28 , top=120  status=no,resizable=yes,scrollbars=yes');
       newwin.focus();
}
 
//*****************************************************************************************
// Name:            OpenExistingSCAWindow()
//
// Description:      Action performed when user clicks the button Open SCA
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenExistingSCAWindow()
{
        var doc = document.forms[0];  
      var y = "../SCAProfLookup/" +doc.LocationNumber.value + doc.LocationType.value + "-" + doc.DocUNID.value + "?EditDocument";
      var newwin = window.open(y,'SignCodeAnalysis','height=380,width=730 ,   left=28 , top=120  status=no,resizable=yes,scrollbars=yes');
       newwin.focus();              
}


//*****************************************************************************************
// Name:            OpenExistingPOWindow
//
// Description:      Action performed when user clicks the button Create PO.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenExistingPOWindow()
{
        var doc = document.forms[0];  
      var y = "../PO/" + doc.PODocID.value + "?EditDocument&POFlag";
      var newwin = window.open(y,'PurchaseOrder','height=380,width=730 ,   left=28 , top=120  status=no,resizable=yes,scrollbars=yes');
       newwin.focus();              
}

//*****************************************************************************************
// Name:            OpenSignOrderWindow
//
// Description:      Action performed when user clicks the button Edit in Sign Order.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenSignOrderWindow()
{
        var doc = document.forms[0];    
      var y = "../SignOrder?openform&ParentUNID=" + doc.DocUNID.value + "~1~";
      var newwin = window.open(y,'SignOrder','status=no,resizable=yes,scrollbars=yes');
       newwin.focus();
}

//*****************************************************************************************
// Name:            OpenRevReqWindow
//
// Description:      Action performed when user clicks the Action button Drawing Revision.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenRevReqWindow()
{
        var doc = document.forms[0];    
      var y = "../RevReq?openform&ParentUNID=" + doc.DocUNID.value + "~1~REQFlag";
      var newwin = window.open(y,'RevReq','height=380,width=730 ,   left=38 , top=120  status=no,resizable=yes,scrollbars=yes');
     newwin.focus();
       }

//*****************************************************************************************
// Name:            OpenLOTWindow
//
// Description:      Action performed when user clicks the Action button LOT.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenLOTWindow()
{
        var doc = document.forms[0];    
      var y = "../Trans?openform&ParentUNID=" + doc.DocUNID.value + "~1~LOTFlag";
      var newwin = window.open(y,'Trans','height=380, width=730, left=38, top=100, toolbar=no, resizable=yes, scrollbars=yes, menubar=yes');
       newwin.focus();
}

//*****************************************************************************************
// Name:            OpenInvoiceTableWindow
//
// Description:      Action performed when user clicks the button Edit in Invoice Details.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function OpenInvoiceTableWindow()
{
var doc = document.forms[0];  
var y = "../Invoice?openform&ParentUNID=" + doc.DocUNID.value + "~1~";
var newwin = window.open(y,'Invoice','height=380,width=730 ,   left=38 , top=120  status=no,resizable=yes,scrollbars=yes');
 newwin.focus();
 }

//*****************************************************************************************
// Name:            textCounter()
// Description:      Used for restricting users from entering more than 270 char in
//                              Text Area field CallBackReq.
//
// Parameters:      field - Name of field being restricted i.e CallBackReq
//                              maxlimit - maximum number of characters allowed.
//
// Returns:     None.
//
// Cautions:            None.
//
//*****************************************************************************************
function textCounter(field, maxlimit) {
   if (field.value.length > maxlimit)
   field.value = field.value.substring (0, maxlimit);
}

//*****************************************************************************************
// Name:            onSubmit()
//
// Description:      Action performed when user tries to save the document
//
// Parameters:      None.
//
// Returns:           true -       If pre-submit action is successful
//                              false - Otherwise.
//
// Cautions:            None.
//
//*****************************************************************************************
function onSubmit() {
      if (validate()==false) {      
            return false;
      } else      {      
            return true;
      }
}


function showAlert() {
      var doc = document.forms[0];    
      var ProjStatus=doc.ProjectStatus.options[doc.ProjectStatus.selectedIndex].text;      
      //alert('ProjStatus = ' + ProjStatus);
      if (ProjStatus  == "Completed" )  
          {
                      alert ('This is a completed project, the detail has already been shifted '
                              + 'to LDB. If there are other live projects the sign detail must be updated '
                              + 'on those projects.  If there are no live projects, the sign detail must be updated '
                              + 'in the Location Profile (under Reports tab).' );
                }

}  // End function showAlert



function processInstallSign_Flag_Logic() {

      var doc = document.forms[0];    
      //  "      SIGN 1 --> If Sign Indicator was changed from an A to something else, flag this document...."
            if ( (doc.SgnInInd_InitVal.value == "A") & (doc.SgnInInd.options[doc.SgnInInd.selectedIndex].text != "A" ) )  {
            //alert("Init Val A and Final val NOT A");
            doc.Sgn1_InstallDtModifiedFlag.value = "Yes";
      } // End If statement



      // If user comes back and sets the Indicator to an "A" we reset the flag....
      if ( doc.SgnInInd.options[doc.SgnInInd.selectedIndex].text == "A" )  {
            //alert ("Final Val is A");
            doc.Sgn1_InstallDtModifiedFlag.value = "";
      }

      //  "SIGN 2 --> If Sign Indicator was changed from an A to something else, flag this document...."
      if ( (doc.Sgn2InInd_InitVal.value == "A") & (doc.Sgn2InInd.options[doc.Sgn2InInd.selectedIndex].text != "A" ) )  {
            //alert("Init Val A and Final val NOT A");
            doc.Sgn2_InstallDtModifiedFlag.value = "Yes";
      } // End If statement

      // If user comes back and sets the Indicator to an "A" we reset the flag....
      if ( doc.Sgn2InInd.options[doc.Sgn2InInd.selectedIndex].text == "A" )  {
            //alert ("Final Val is A");
            doc.Sgn2_InstallDtModifiedFlag.value = "";
      }
      
      
      //  "SIGN 3 --> If Sign Indicator was changed from an A to something else, flag this document...."
      if ( (doc.Sgn3InInd_InitVal.value == "A") & (doc.Sgn3InInd.options[doc.Sgn3InInd.selectedIndex].text != "A" ) )  {
            //alert("Init Val A and Final val NOT A");
            doc.Sgn3_InstallDtModifiedFlag.value = "Yes";
      } // End If statement

      // If user comes back and sets the Indicator to an "A" we reset the flag....
      if ( doc.Sgn3InInd.options[doc.Sgn3InInd.selectedIndex].text == "A" )  {
            //alert ("Final Val is A");
            doc.Sgn3_InstallDtModifiedFlag.value = "";
      }
      
      
      //  "SIGN 4 --> If Sign Indicator was changed from an A to something else, flag this document...."
      if ( (doc.Sgn4InInd_InitVal.value == "A") & (doc.Sgn4InInd.options[doc.Sgn4InInd.selectedIndex].text != "A" ) )  {
            //alert("Init Val A and Final val NOT A");
            doc.Sgn4_InstallDtModifiedFlag.value = "Yes";
      } // End If statement

      // If user comes back and sets the Indicator to an "A" we reset the flag....
      if ( doc.Sgn4InInd.options[doc.Sgn4InInd.selectedIndex].text == "A" )  {
            //alert ("Final Val is A");
            doc.Sgn4_InstallDtModifiedFlag.value = "";
      }
      
 } // End function processInstallSign_Flag_Logic

// Alert function to allert users to notify Sign contact of changes
// Only when project status is open or complete --> AP
function proStatWarn()
{
      var doc = document.forms[0];
      if(doc.ProjectStatus.value == 'Open' || doc.ProjectStatus.value == 'Completed')
      {
            alert("Warning:  This project is " + doc.ProjectStatus.value + ". Please notify the Walgreen Sign Contact ( " + doc.ConstructionContact.options[doc.ConstructionContact.selectedIndex].text + " ) of your change.");
      }
}
// -->
</script>

<script language="JavaScript" type="text/javascript">
<!--
document._domino_target = "_self";
function _doClick(v, o, t, h) {
  var form = document._Req;
  if (form.onsubmit) {
     var retVal = form.onsubmit();
     if (typeof retVal == "boolean" && retVal == false)
       return false;
  }
  var target = document._domino_target;
  if (o.href != null) {
    if (o.target != null)
       target = o.target;
  } else {
    if (t != null)
      target = t;
  }
  form.target = target;
  form.__Click.value = v;
  if (h != null)
    form.action += h;
  form.submit();
  return false;
}
// -->
</script>

<script language="JavaScript" type="text/javascript">
<!--
function Action1_onClick() {
var doc = document.forms[0];
if (doc.SaveMode.value == "Y") {
    alert("Cannot exit while update is in progress. \n\n Please wait....");
   };
else {
         doc.SaveMode.value = "Y";
         doc.ExitAction.click();
        }
}

function Action2_onClick() {
var doc = document.forms[0];

//Added set of ProjectStatus and DeadReason variables - DR - 02/12/04.
var ProjectStatus=doc.ProjectStatus.options[doc.ProjectStatus.selectedIndex].text;
var DeadReason=doc.DeadReason.options[doc.DeadReason.selectedIndex].text;

//Added if statement to check if a ProjectStatus of Dead has a DeadReason - DR - 02/12/04.
if ((ProjectStatus == 'Dead') && (DeadReason == '')) {
   alert("Please select a Dead Reason.")  
   return; }    
   
//  "SIGN  --> If Sign Indicator was changed from an A to something else, flag this document...."
processInstallSign_Flag_Logic();
   
if (doc.SaveMode.value == "Y") {
  alert("Update is in progress. \n\n Please wait....");
  return false;
   }
else { doc.SaveMode.value = "Y";
          if (validate() == true) {
          doc.saveAction.click()
        };
}
}

function Action3_onClick() {
var doc = document.forms[0];

// 4/12/4 sandeep, Disallow function if Save is going on.
if (doc.SaveMode.value == "Y") {
  alert("Update is in progress. \n\n Please wait....");
  return false;
   }

if (doc.CommentID.value == "N" )
      {      
      var y = "../ProjectComments?openform&ParentUNID=" + doc.DocUNID.value + "~1~";
      var newwin = window.open(y,'ProjectComments','height=300,width=700 ,   left=28 , top=200  status=no,resizeable=no,scrollbars=yes');
       newwin.focus();
       }
else
      {
      var y = "../CommentsLookup/" + doc.CommentID.value + "?EditDocument";      
      var newwin = window.open(y,'ProjectComments','height=300,width=700 ,   left=28 , top=200  status=no,resizeable=no,scrollbars=yes');
       newwin.focus();              
      }
}

function Action(href,oc,t) { this.href = href; this.onClick = oc; this.target = t; }

var dominoActions = new Array();
dominoActions[1] = new Action(null,Action1_onClick,'_self');
dominoActions[2] = new Action(null,Action2_onClick,'_self');
dominoActions[3] = new Action(null,Action3_onClick,'_self');
function doAction(n) {
   var action = dominoActions[n];
   if (action.href)
      window.open(action.href,action.target);
   else if (action.onClick) {
      currentTarget = document._domino_target;
      document._domino_target = action.target;
      action.onClick();
      document._domino_target = currentTarget;
   }}
// -->
</script>

<script language="JavaScript" type="text/javascript">
<!--
//*****************************************************************************************
// Name:            IsNull
//
// Description:      Checks if the string passed has a null value
//
// Parameters:      s - The given value. (src and target)
//
// Returns:           None
//
// Cautions:            
//
//
//*****************************************************************************************
function IsNull( val )
      {
             var isValid = false;
                     if (val+"" == "null")
                           isValid = true;
                   return isValid;
      }  // end IsNull
      
//*****************************************************************************************
// Name:            IsUndef
//
// Description:      Checks if the string passed has a undefined value
//
// Parameters:      s - The given value. (src and target)
//
// Returns:           None
//
// Cautions:            
//
//
//*****************************************************************************************  
      function IsUndef( val )
            {
                   var isValid = false;
                    if (val+"" == "undefined")
                        isValid = true;
                        return isValid;
            }  // end IsUndef
 
//*****************************************************************************************
// Name:            trimString
//
// Description:      Trim spaces away from a given string from both end.
//
// Parameters:      s - The given value. (src and target)
//
// Returns:           None
//
// Cautions:            
//
// The string passed in will be trimed.
//
//*****************************************************************************************

function trimString(s)
{
      // ---------------------------------------------------------------
      // Trim the spaces in the front of the string.
      // ---------------------------------------------------------------
                        
      i = 0
            
      while (i < s.length && s.charAt(i) == ' ')
            i ++

      if (i != s.length)            
            s = s.substring(i)
      else
            s = ''
      
      // ---------------------------------------------------------------
      // Trim the spaces in the end of the string.
      // ---------------------------------------------------------------

      i = s.length - 1
            
      while (i >= 0 && s.charAt(i) == ' ')
            i --
                  
      if (i < 0)
            s = ''
      else
            s = s.substring(0,i+1)
            
      return s
} //  end trimString

//*****************************************************************************************
// Name:            isBlank
//
// Description:      Check if the given input is empty or not.
//
// Parameters:      s - The given value.
//
// Returns:           true - If it's an empty string.
//                              false - Otherwise.
//
// Cautions:            If a string contains only spaces,
//                              then, it's considered as an empty string.
//
//*****************************************************************************************

function isBlank(s)
{
      // ---------------------------------------------------------------
      // Trim the spaces in the front of the string.
      // ---------------------------------------------------------------
                        
      s = trimString(s);
      
      if (s == '' || IsNull(s) || IsUndef(s) )
            return true;
      else
            return false;
            
} // end isBlank

//*****************************************************************************************
// Name:            isChkBoxSelected
//
// Description:      Check if the check box items have been selected.
//
// Parameters:      chkbox object - The check box object to be examined.
//
// Returns:           True - If user selected at least one item from the list.
//                              False - Otherwise.
//
// Cautions:            None.
//
//*****************************************************************************************

function isChkBoxSelected(chkbox)
{
      // ---------------------------------------------------------------
      // Go through each check box to see
      // if an item has been checked.
      // If so, return immediately.
      // ---------------------------------------------------------------

      for (i=0; i<chkbox.length; i++)
      {
            if (chkbox[i].checked)
                  return true;
      }
} // end isChkBoxSelected

//*****************************************************************************************
// Name:            isOptionSelected
//
// Description:      Check if an selection has been made.
//
// Parameters:      opt - The option object.
//
// Returns:           True - If user has selected an option.
//                              False - Otherwise.
//
// Cautions:            
//
// Assumes there is no default selection is made, and the first option
// indicate a blank or wording to inform user to select.   Thus, if the
// first option is selected, it's considered not selected.
//*****************************************************************************************

function isOptionSelected(opt)
{
      return (opt.selectedIndex>0);
} // end isOptionSelected

//*****************************************************************************************
// Name:            isNumeric
//
// Description:      Check if the input is numeric.
//
// Parameters:      s - given input to check.
//
// Returns:           True - If it is.
//                              False - Otherwise.
//
// Cautions:            Only allow 0-9 as characters.
//
//*****************************************************************************************

function isNumeric(s)
{
      if (s == '')
            return false;
            
      // ---------------------------------------------------------------
      // Go through each character to ensure
      // it's between 0 and 9.  
      // If not, return false immediately.
      // ---------------------------------------------------------------
      
      for (i=0; i<s.length; i++)
      {
            if  (s.charAt(i) < '0' || s.charAt(i) > '9')
                  return false;
      }
      
      return true;
} // end isNumeric
      
//*****************************************************************************************
// Name:            isAlphaNumeric
//
// Description:      Check if the input is alpha-numeric.
//
// Parameters:      s - given input to check.
//
// Returns:           True - If it is.
//                              False - Otherwise.
//
// Cautions:            Only allow 0-9, a-z, or A-Z as characters.
//
//*****************************************************************************************

function isAlphaNumeric(s)
{
      var c;
      
      if (s == '')
            return false;
            
      // ---------------------------------------------------------------
      // Go through each character to ensure
      // it's between 0 and 9.  
      // If not, return false immediately.
      // ---------------------------------------------------------------
      
      for (i=0; i<s.length; i++)
      {
            c = s.charAt(i);
            
          if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))      
                  return false;
      }
      
      return true;
}
      
//*****************************************************************************************
// Name:            isAlphaNumericWithSpace
//
// Description:      Check if the input is alpha-numeric .
//
// Parameters:      s - given input to check.
//
// Returns:           True - If it is.
//                              False - Otherwise.
//
// Cautions:            Only allow 0-9, a-z, A-Z or "  "as characters.
//
//*****************************************************************************************

function isAlphaNumericWithSpace(s)
{
      var c;
      
      if (s == '')
            return false;
            
      // ---------------------------------------------------------------
      // Go through each character to ensure
      // it's between 0 and 9.  
      // If not, return false immediately.
      // ---------------------------------------------------------------
      
      for (i=0; i<s.length; i++)
      {
            c = s.charAt(i);
            
          if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))      
             {
                   if (c != " ")
                         return false;
               }
      }
      
      return true;
}      
      
//*****************************************************************************************
// Name:            isLeapYear
//
// Description:      Check if the given year is a leap year.
//
// Parameters:      yr - Given year.
//
// Returns:           True - If it is.
//                              False - Otherwise.
//
// Cautions:            Assume the given is a numeric year.
//                              If not, it will return false as well.
//
//*****************************************************************************************

function isLeapYear(yr)
{
      if (!isNumeric(yr))
            return false;

      // ------------------------------------------------------------------------------
      // Years divisible by four are leap years, unless...
      // Years also divisible by 100 are not leap years, except...
      // Years divisible by 400 are leap years.
      // ------------------------------------------------------------------------------
            
      if (yr % 4 != 0)
            return false;
      else if (yr % 400 == 0)
            return true;
      else if (yr % 100 == 0)
            return false;
     else
           return true;
}
      
//*****************************************************************************************
// Name:            isValidDate
//
// Description:      Validate the input date.
//
// Parameters:      dt - Given date to be validated.
//                              targetDT =
//
// Returns:           True - If input is a valid date.
//                              False - Otherwise.
//
// Cautions:            The input must be in the MM/DD/YYYY format.
//*****************************************************************************************

function isValidDate(dt)
{
      dt = trimString(dt)      
      // ---------------------------------------
      // Make sure it's not empty.
      // ---------------------------------------

      if (dt == '')
            return false;
            
      // -------------------------------------------------------------------------------
      // Check the length of date and positions of slashes.
      // Input must be in the following format:
      // MMDD, MMDDYYYY, MM/DD/YY,
      // MM/DD, MM/DD/YYYY,
      // -------------------------------------------------------------------------------
      
      if (dt.length != 4 && dt.length != 5 && dt.length != 8 && dt.length != 10)
            return false;
            
      if ((dt.length == 5 || dt.length == 10 || dt.length == 8) && dt.substr(2,1) != '/')
            return false;
            
      if ((dt.length == 10 ||  dt.length == 8 ) && dt.substr(5,1) != '/')
            return false;

      mon = dt.substr(0,2)
      
      if (dt.length == 4 )
            day = dt.substr(2,2)
      else
            day = dt.substr(3,2)
      
      if (dt.length == 8) {      
      // 10/14/02 Sandeep Code to calculate the century for date in format MM/DD/YY      
            yr = dt.substr(6,2);      }      
      else
            {
                  if (dt.length == 10)
                        yr = dt.substr(6,4);
                  else
                  {      today = new Date();
                  yr = today.getFullYear();
                  }
            }

      if (!isNumeric(mon) || !isNumeric(day) || !isNumeric(yr))
            return false;

      mon = Number(mon);
      day = Number(day);
      yr = Number(yr);
      
      // -------------------------------------
      // checks for valid month.
      // -------------------------------------

      if (mon < 1 || mon > 12)
            return false;

      // ---------------------------------
      // check day of month.
      // ---------------------------------

      if (mon == 1 || mon == 3 || mon == 5 || mon == 7 || mon == 8 || mon == 10 || mon == 12)
      {
            // ---------------------------------------------------------------------------
            // If it's old month, day must be between 1 and 31.
            // ---------------------------------------------------------------------------

            if (day < 1 || day > 31)
                  return false;
      }
      else if (mon != 2)
      {
            // -------------------------------------------------------------------------------------------------
            // If it's even month, exclude 02, day must be between 1 and 30.
            // -------------------------------------------------------------------------------------------------

            if (day < 1 || day > 30)
                  return false;
      }
      else
      {
            // ------------------------------------------------------------------------------
            // if month = 02, check days for leap/non leap years
            // ------------------------------------------------------------------------------

            if (isLeapYear(yr))
            {
                  if (day < 1 || day > 29)
                        return false;
            }
            else if (day < 1 || day > 28)
                  return false;
      }

      return true;
}      

//*****************************************************************************************
// Name:            formatDate
//
// Description:      Format the given date to MM/DD/YYYY format.
//
// Parameters:      dt - Given date to be validated.
//
// Returns:           Formated date.
//
// Cautions:            Assumes the given dt is a valid date.
//
// Input allowed:
//                              MMDD, MM/DD/YY, MM/DD, MM/DD/YYYY
//*****************************************************************************************

function formatDate(dt)
{
      dt = trimString(dt)
      
      // -------------------------------------------------
      // Handles MM/DD/YYYY format.
      // -------------------------------------------------
      
      if (dt.length == 10)
            return dt;
            
      // -----------------------------------------------
      // Handles MM/DD/YY format.
      // -----------------------------------------------

      if (dt.length == 8)
            // 10/14/02 Sandeep Code to calculate the century for date in format MM/DD/YY      
      {      yr = dt.substr(6,2);            
            if (yr >= 50)       yr =  ('19' + yr);
            else {yr = ('20' + yr);  }
            dte = dt.substr(0,2) + "/" + dt.substr(3,2) + "/" + yr;      
            return  dte };
            
      // ---------------------------------------
      // Handles MM/DD format.
      // ---------------------------------------

      today = new Date();
      yr = today.getFullYear();

      if (dt.length == 5)
            return dt + "/" + yr
            
      // -------------------------------------
      // Handles MMDD format.
      // -------------------------------------

      if (dt.length == 4)
         return dt.substr(0,2) + "/" + dt.substr(2,2) + "/" + yr
      return dt;            
}

//*****************************************************************************************
// Name:            compareDate
//
// Description:      Compare two given dates, to determine which comes first.
//
// Parameters:      dt1 - First given date.
//                              dt2 - Second given date.
//
// Returns:           1 - If dt1 > dt2
//                              0 - If dt1 == dt2
//                              -1 - If dt1 < dt2
//
// Cautions:            Assumes the given dates are valid date.
//*****************************************************************************************

function compareDate(dt1, dt2)
{
      var sd = new Date(formatDate(dt1))
      var ed = new Date(formatDate(dt2))

      timeDiff = sd - ed
      
      if (timeDiff>0)
            return 1;
      else if (timeDiff == 0)
            return 0;
      else
            return -1;
}

//*****************************************************************************************
// Name:            isValidTime
//
// Description:      Validate if the given value is a valid time.
//
// Parameters:      tm - Given time to be validated.
//
// Returns:           True - If input is a valid time.
//                              False - Otherwise.
//
// Cautions:            None.
//
// Validation Rules:
//          Accept the following as valid input:
//          HH, HHMM, HHMMSS, HH:MM, HH:MM:SS
//*****************************************************************************************

function isValidTime(tm)
{
      
      tm = trimString(tm)

      // ---------------------------------------
      // Make sure it's not empty.
      // ---------------------------------------

      if (tm == '')
            return false;
            
      // -------------------------------------------------------------------------------
      // Check the length of time, and positions of slashes.
      // Input must be in the following format:
      // HH, HHMM, HHMMSS,
      //      HH:MM, HH:MM:SS
      // -------------------------------------------------------------------------------

      if (tm.length != 2 && tm.length != 4 && tm.length != 6 && tm.length != 5 && tm.length != 8)
            return false;

      if ((tm.length == 5 || tm.length == 8) && tm.substr(2,1) != ':')      
            return false;

      hr = tm.substr(0,2);
      
      if (tm.length == 4 || tm.length == 6)
            min = tm.substr(2,2);
      else if (tm.length == 5 || tm.length == 8)
            min = tm.substr(3,2);
      else
            min = "00";

      if (tm.length == 6)
            sec = tm.substr(4,2);
      else if (tm.length == 8)
            sec = tm.substr(6,2);
      else
            sec = "00";

      if (!isNumeric(hr) || !isNumeric(min) || !isNumeric(sec))
            return false;
            
      // ----------------------------------------------------
      // checks for valid hr, min, and sec.
      // ----------------------------------------------------
      
      if (hr < 0 || hr > 23)      
            return false;

      if (min < 0 || min > 59)
            return false;

      if (sec < 0 || sec > 59)
            return false;
      
      return true;
}            
      
//*****************************************************************************************
// Name:            formatTime
//
// Description:      Format Time to HH:MM:SS.
//
// Parameters:      tm - Given time to be validated.
//
// Returns:           Formated time.
//
// Cautions:            Assumes it's a valid time.
//
// Format Rules:
//          Pad with zeros and colons.
//          HH                   -> HH:00:00
//            HHMM             -> HH:MM:00
//            HHMMSS       -> HH:MM:SS
//            HH:MM            -> HH:MM:00
//            HH:MM:SS      -> HH:MM:SS (No changes)
//*****************************************************************************************

function formatTime(tm)
{
      tm = trimString(tm);
      hr = tm.substr(0,2);
      
      if (tm.length == 4 || tm.length == 6)
            min = tm.substr(2,2);
      else if (tm.length == 5 || tm.length == 8)
            min = tm.substr(3,2);
      else
            min = "00";

      if (tm.length == 6)
            sec = tm.substr(4,2);
      else if (tm.length == 8)
            sec = tm.substr(6,2);
      else
            sec = "00";
            
      return hr + ":" + min + ":" + sec;
}      

//*****************************************************************************************
// Name:            yesterdayDate
//
// Description:      Calculate yesterday's Date based on Today's Date
//
// Parameters:      
//
// Returns:           Yesterday's date in MM/DD/YYYY format
//
// Cautions:            Javascript function getMonth() returns month values from 0-11
//                              Hence month value is incremented by 1 and tested
//*****************************************************************************************

function yesterdayDate()
{
      var today=new Date()
      var timenow=today.getTime()
      var timeyesterday=timenow-(60 * 60 * 24 * 1000)
      var dateyesterday=new Date(timeyesterday)
      var ydt=dateyesterday.getDate()
      if ((ydt.toString()).length!=2)
            {
                  ydt="0"+ydt
            }
      var ymth=dateyesterday.getMonth()
      ymth=parseInt(ymth,10)+1
      if ((ymth.toString()).length!=2)
            {
                  ymth="0"+ymth
            }
      var yyr=dateyesterday.getYear()
      
      var ndt=ymth+"/"+ydt+"/"+yyr
      
       return ndt
}

//*****************************************************************************************
// Name:            todayDate
//
// Description:      Returns Today's Date
//
// Parameters:      
//
// Returns:           Today's date in MM/DD/YYYY format
//
// Cautions:            Javascript function getMonth() returns month values from 0-11
//                              Hence month value is incremented by 1 and tested
//*****************************************************************************************

function todayDate()
{
      var today=new Date()
      var timenow=today.getTime()
      var datetoday=new Date(timenow)
      var ydt=datetoday.getDate()
      if ((ydt.toString()).length!=2)
            {
                  ydt="0"+ydt
            }
      var ymth=datetoday.getMonth()
      ymth=parseInt(ymth,10)+1
      if ((ymth.toString()).length!=2)
            {
                  ymth="0"+ymth
            }
      var yyr=datetoday.getYear()
      
      var todt=ymth+"/"+ydt+"/"+yyr
      
       return todt
}


//*****************************************************************************************
// Name:            setDocChanged
//
// Description:      Set flag to indicate that the document has been changed.
//
// Parameters:      None.
//
// Returns:           None.
//
// Cautions:            None.
//
//*****************************************************************************************

function setDocChanged()
{
      document.forms[0].docChged.value="Y"
}

//*****************************************************************************************
// Name:            closeDoc
//
// Description:      Close doc.  Prompt user to save if doc has been changed.
//
// Parameters:      newURL - new URL if close is successful.
//
// Returns:           None.
//
// Cautions:            None.
//
// This function is called when user decides to close the existing doc.
// Check to see if any info has been changed, if so, prompt user to save.
// Or else, just go to the next URL.
//*****************************************************************************************

function closeDoc(newURL)
{
      if (document.forms[0].docChged.value != "Y")
      {
            self.location.replace(newURL)
            return;
      }
                  
      if (confirm("Changes have been made.\n\n" +
      "Click OK to save the changes and exist. \n" +
      "Click Cancel to cancel the changes and exit."))
      {
            document.forms[0].docChged.value="N";
            if (validate())
                  {
                  document.forms[0].submit();
                  return;
                  }
            else
                  {
                  return;
                  }       
      }
      
      self.location.replace(newURL)
      return;
}

// Following functions are used for getting ReturnURL
function getCookieVal (offset)
   {

   var endstr = document.cookie.indexOf (";", offset);

   if (endstr == -1)

      endstr = document.cookie.length;

   return unescape(document.cookie.substring(offset, endstr));

   }

function GetCookie (name)
   {

   var arg = name + "=";

   var alen = arg.length;

   var clen = document.cookie.length;

   var i = 0;

   while (i < clen)
      {

      var j = i + alen;

      if (document.cookie.substring(i, j) == arg)

         return getCookieVal (j);

      i = document.cookie.indexOf(" ", i) + 1;

      if (i == 0) break;

      }

   return null;

   }



function SetCookie (name, value)
   {

   var argv = SetCookie.arguments;

   var argc = SetCookie.arguments.length;

   var expires = (argc > 2) ? argv[2] : null;

   var path = (argc > 3) ? argv[3] : null;

   var domain = (argc > 4) ? argv[4] : null;

   var secure = (argc > 5) ? argv[5] : false;

   document.cookie = name + "=" + escape (value) +

        ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +

        ((path == null) ? "" : ("; path=" + path)) +

        ((domain == null) ? "" : ("; domain=" + domain)) +

        ((secure == true) ? "; secure" : "");

   }


function DeleteCookie ()
   {

   var exp = new Date();

   exp.setTime (exp.getTime() - 1000000000);  // This cookie is history (changed -1 to make it previous time)

   var cval = GetCookie ('SPWReturnURL');

   document.cookie ='SPWReturnURL' + "=" + cval + "; expires=" + exp.toGMTString();
   alert("The cookie has been deleted.");
   }

// Clears text box after setting cookie
function SetTheCookie()
   {
    var doc = document.forms[0];
   if(doc.ReturnURL.value.length != 0)  
      {

      var expdate = new Date ();

      expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 365));

      SetCookie('SPWReturnURL', doc.ReturnURL.value, expdate);        
      doc.ReturnURL.value = " ";      
      return false;

      }    
   }


// -->
</script>
</head>
<body text="#000000" bgcolor="#FFFFFF" text="000000" link="003399" vlink="003399" alink="800000" leftmargin=20 topmargin=0 marginwidth=20 marginheight=0 bgcolor="ffffff" onload="window.status=(&quot;&quot;);

var doc = document.forms[0];

doc.SgnInInd_InitVal.value  = doc.SgnInInd.options[doc.SgnInInd.selectedIndex].text;
doc.Sgn2InInd_InitVal.value  = doc.Sgn2InInd.options[doc.Sgn2InInd.selectedIndex].text;
doc.Sgn3InInd_InitVal.value  = doc.Sgn3InInd.options[doc.Sgn3InInd.selectedIndex].text;
doc.Sgn4InInd_InitVal.value  = doc.Sgn4InInd.options[doc.Sgn4InInd.selectedIndex].text;

doc.SaveMode.value=&quot;N&quot;;
if(doc.RefreshFlag.value ==&quot;Y&quot;) {
   doc.RefreshFlag.value = &quot;N&quot;;
   doc.saveAction.click();
}" onmouseover="var doc = document.forms[0];

if ((window.status == &quot;SAVING IN PROGRESS...&quot;) || (window.status == &quot;LOADING IN PROGRESS...&quot;))
{
      doc.style.cursor=&quot;wait&quot;;
}
else
{
      doc.style.cursor=&quot;default&quot;;
}">

<form onsubmit="var doc = document.forms[0];
if (validateSignDetail() == true) {
      return(onSubmit());
} else {
      return false;
}" method="post" action="/facility/vndfdloc.nsf/82755bf440554a6286256b68007eab91/e82b24ac40225aa9862572820079a885?EditDocument&amp;Seq=1" name="_Req">
<input type="hidden" name="__Click" value="0">
<input type="hidden" name="%%ModDate" value="862572B1006C93BE">
<applet name="dominoActionBar" code="lotus.notes.apps.actionbar.ActionBar.class" codebase="/domjava" archive="actionbar.jar" alt="Action Bar" width="100%" height="35" mayscript>
<param name="cabbase" value="actionbar.cab">
<param name="BGColor" value="#FFFFFF">
<param name="ButtonBGColor" value="#FFFFFF">
<param name="ButtonBorderStyle" value="ONMOUSEOVER">
<param name="ButtonHeightType" value="DEFAULT">
<param name="ButtonHeight" value="8">
<param name="ButtonWidthType" value="DEFAULT">
<param name="ButtonWidth" value="0">
<param name="ButtonTextJustify" value="3">
<param name="FontName" value="Helvetica">
<param name="FontSize" value="9">
<param name="FontStyle" value="P">
<param name="TextColor" value="#000000">
<param name="Action1" value="Exit,/icons/actn112.gif,1,0,0,0,0,0">
<param name="Action2" value="Save,/icons/actn117.gif,2,0,0,0,0,0">
<param name="Action3" value="Comments,/icons/actn030.gif,3,0,0,0,0,0">
<param name="NumActions" value="3">
</applet>
<br>
 <font size="2" color="#ff0000">
<input name="SaveMode" value="N" Type=Hidden></font>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#FFFFFF"><div align="center"><b><font size="2" face="Arial">Requisition Profile For </font></b><b><font size="2" face="Arial">02832</font></b><b><font size="2" face="Arial">-</font></b><b><font size="2" face="Arial">S</font></b><br>
<b><font size="2" face="Arial">4010 SW 137th Ave</font></b><b><font size="2" face="Arial">,   </font></b><b><font size="2" face="Arial">Miami</font></b><b><font size="2" face="Arial">,  </font></b><b><font size="2" face="Arial">FL</font></b><b><font size="2" face="Arial"> </font></b><b><font size="2" face="Arial">33175</font></b></div></td></tr>
</table>
<DIV>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="24%" bgcolor="#C0C0C0"><div align="center">
<input type="button" onclick="showtab(1);

var doc = document.forms[0];
this.style.background = '#FF9FA9';
button2.style.background = '#C0C0C0';
button3.style.background = '#C0C0C0';
button4.style.background = '#C0C0C0';
button5.style.background = '#C0C0C0';
" onmouseover="this.style.background='#FF828C';" onmouseout="if (currtab == &quot;tab1&quot;)
{
      this.style.background='#FF9FA9';
}
else
      this.style.background='#C0C0C0';" value="Location Detail" id="button1" style="width=100%; color=#FFFFFF; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#FF9FA9; border-width=0;" name="button1"></div></td><td width="19%" bgcolor="#C0C0C0"><div align="center">
<input type="button" onclick="showtab(2);
showAlert();

this.style.background = '#009FC2';
var doc = document.forms[0];

button1.style.background = '#C0C0C0';
button3.style.background = '#C0C0C0';
button4.style.background = '#C0C0C0';
button5.style.background = '#C0C0C0';

" onmouseover="this.style.background='#0082A5';" onmouseout="if (currtab == &quot;tab2&quot;)
{
      this.style.background='#009FC2';
}
else
      this.style.background='#C0C0C0';" value="Sign Detail" id="button2" style="width=100%; color=#FFFFFF; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#C0C0C0; border-width=0;" name="button2"></div></td><td width="19%" bgcolor="#C0C0C0"><div align="center">
<input type="button" onclick="showtab(3);

this.style.background = '#FF9F71';
var doc = document.forms[0];
button2.style.background = '#C0C0C0';
button1.style.background = '#C0C0C0';
button4.style.background = '#C0C0C0';
button5.style.background = '#C0C0C0';" onmouseover="this.style.background='#FF8255';" onmouseout="if (currtab == &quot;tab3&quot;)
{
      this.style.background='#FF9F71';
}
else
      this.style.background='#C0C0C0';" value="Sign Dates" id="button3" style="width=100%; color=#FFFFFF; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#C0C0C0; border-width=0;" name="button3"></div></td><td width="15%" bgcolor="#C0C0C0"><div align="center">
<input type="button" onclick="showtab(4);

this.style.background = '#9F9FE0';
var doc = document.forms[0];
button2.style.background = '#C0C0C0';
button3.style.background = '#C0C0C0';
button1.style.background = '#C0C0C0';
button5.style.background = '#C0C0C0';" onmouseover="this.style.background='#9F82E0';" onmouseout="if (currtab == &quot;tab4&quot;)
{
      this.style.background='#9F9FE0';
}
else
      this.style.background='#C0C0C0';" value="B.O.M." id="button4" style="width=100%; color=#FFFFFF; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#C0C0C0; border-width=0;" name="button4"></div></td><td width="23%" bgcolor="#C0C0C0"><div align="center">
<input type="button" onclick="showtab(5);

this.style.background = '#009F71';
var doc = document.forms[0];
button2.style.background = '#C0C0C0';
button3.style.background = '#C0C0C0';
button4.style.background = '#C0C0C0';
button1.style.background = '#C0C0C0';" onmouseover="this.style.background='#008255';" onmouseout="if (currtab == &quot;tab5&quot;)
{
      this.style.background='#009F71';
}
else
      this.style.background='#C0C0C0';" value="Project Dates" id="button5" style="width=100%; color=#FFFFFF; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#C0C0C0; border-width=0;" name="button5"></div></td></tr>
</table>
<DIV ID=tab1 style="width=100%">
<table bordercolorlight="#000000" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="33%" bgcolor="#FF9FA9"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="33%" bgcolor="#FF9FA9" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="center"><b><font size="2" face="Arial">Location Detail</font></b></div></td><td width="33%" bgcolor="#FF9FA9"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right">
<input type="button" onclick="printDiv();

//color=BLUE; font-size=10pt; font-weight=BOLD; background-color=transparent; border-width=0;
//COLOR=blue; FONT-SIZE=10pt; FONT-WEIGHT=bold; BACKGROUND-COLOR = transparent; BORDER-WIDTH=0;" onmouseover="var doc = document.forms[0];
this.style.color='blue';" onmouseout="this.style.color='white';" value="Print" style="color=white; font-size=10pt; font-weight=BOLD; background-color=transparent;"></div></td></tr>
</table>

<table bordercolorlight="#000000" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Location Name:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Walgreen Drug Store</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Corner Address:</font></div></td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Bird Road &amp; 137th</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">County: </font></div></td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Dade</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Store Mgr:</font></div></td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Angelo B Martinez</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Project Type:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">In Store Clinic</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Main Phone Nbr:</font></div></td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">305-554-4549</font> </td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Project Number:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ProjectNumber" value="113384" onchange="var doc = document.forms[0];

doc.updateProjNumPOCO.click();       


" style="background:TRANSPARENT; width:100%;"></font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">District:</font></div></td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">023</font><font size="2" face="Arial"> </font><font size="2" face="Arial">Miami South</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Project Status:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ProjectStatus" type="hidden" value="1">
<select name="ProjectStatus" onchange="document.forms[0].ProjectStatusUpdated.value = todayDate();

var doc = document.forms[0];

var ProjectStatus=doc.ProjectStatus.options[doc.ProjectStatus.selectedIndex].text;

if (ProjectStatus == 'Dead') {
   doc.DeadEMailFlag.value = 'Y' ; }
   
if (ProjectStatus != 'Dead') {
   doc.DeadEMailFlag.value = '' ; }
   
     
 
" onfocus="var doc = document.forms[0];
if ((doc.SignMfgRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.ProjectNumber.focus();
};
" style="background:TRANSPARENT; width:100%;">
<option selected>Live
<option>Dead
<option>On Hold
<option>Pending
<option>Completed</select>
</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">District Mgr:</font></div></td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Jorge G Morales</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Dead Reason:</font></div></td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_DeadReason" type="hidden" value="1">
<select name="DeadReason" onfocus="var doc = document.forms[0];
if ((doc.SignMfgRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.ProjectNumber.focus();
};
" style="background:TRANSPARENT;">
<option selected>
<option>Initiator Cancelled
<option>Budget Denied
<option>City Denied
<option>Completed By Others
<option>Landlord Denied
<option>Variance Denied
<option>Store Scheduled to Close
<option selected></select>
</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Region:</font></div></td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">06</font><font size="2" face="Arial"> </font><font size="2" face="Arial">P.T. Bonk</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Status Last Updated:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ProjectStatusUpdated" value="" size=10 onfocus="document.forms[0].ProjectNumber.focus()" style="background:TRANSPARENT; width:100%;"></font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Region Manager:</font></div></td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Paul T Bonk</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Store Type:</font></div></td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Regular</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">DTR Depot:</font></div></td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">00056</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Building Size:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">14,300</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Drive-Thru Type:</font></div></td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Single</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Dimensions:</font></div></td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> X   </font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Food Mart:</font></div></td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Exterior Elevation:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Liquor Type:</font></div></td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Requisition Number:</font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RequisitionNumber" value="clinic rollout" SIZE=25 style="background:TRANSPARENT; width:100%"></font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">One Hour Photo:</font></div></td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">Likelihood of City Appr on LED</font>:</div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDCityApproval" type="hidden" value="1">
<select name="LEDCityApproval">
<option selected>
<option>Easy
<option>Easy with Restrictions
<option>Hard-Variance Required
<option>Hard
<option>Hard-Variance Required-Very Unlikely
<option>Impossible to Permit
<option>Impossible-Planned Development</select>
</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Open 24 Hours:</font></div></td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Yes</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Launch Date:  </font></div></td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="180" alt=""><br>
</td><td width="44%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="56%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>
</table>

<table bordercolorlight="#000000" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Scope of Work:</font></div></td><td width="100%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<textarea name="ScopeOfWork" rows="7" cols="50" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" onkeydown="textCounter(this.form.ScopeOfWork, 240);" onkeyup="textCounter(this.form.ScopeOfWork, 240);" style="font-family:arial; font-size:8pt; height=70; width=100%; background:TRANSPARENT;">Add clinic bldg signage.</textarea>
</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="100%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Prior Site/LED History:</font></div></td><td width="100%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<textarea name="Comments" rows="7" cols="50" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onkeydown="textCounter(this.form.Comments, 270);" onkeyup="textCounter(this.form.Comments, 240);" style="font-family:arial; font-size:8pt; height=70; width=100%; background:TRANSPARENT;"></textarea>
</font></td></tr>
</table>

<table bordercolorlight="#000000" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#FF82A0"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="center"><b><font size="2" face="Arial">Contacts Detail</font></b></div></td></tr>
</table>

<table bordercolorlight="#000000" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">Building Responsibility:</font></div></td><td width="51%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Data Cable Company:</font></div></td><td width="49%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Datatec Systems, Inc.</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
</td><td width="51%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="49%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
</td><td width="51%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Developer:</font></div></td><td width="49%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
</td><td width="51%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="49%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">Project Engineer:</font></div></td><td width="51%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">G. Hinojosa</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Landlord Company:</font></div></td><td width="49%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
</td><td width="51%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="49%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">Project Manager:</font></div></td><td width="51%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">H. Childs</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Manufacturer:</font></div></td><td width="49%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDMfgCompany" type="hidden" value="1">
<select name="LEDMfgCompany" onfocus="var doc = document.forms[0];
if ( (doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ||  (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="width=100%; background:TRANSPARENT;">
<option>---
<option selected>HiTech LED Readerboards
<option>Daktronics LED Readerboards</select>
</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
</td><td width="51%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="49%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">Real Estate Manager:</font></div></td><td width="51%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">K. Miller</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">WAG Sign Contact:</font></div></td><td width="49%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ConstructionContact" type="hidden" value="1">
<select name="ConstructionContact" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="width=100%; background:TRANSPARENT;">
<option>
<option>---
<option selected>Amber DeSanctis
<option>Pat Gurley
<option>Sharon Tascher</select>
</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
</td><td width="51%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="49%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">Sign Mfg. Company: </font></div></td><td width="51%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">Icon Midwest</font></td><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Sign Mfg. Contact: </font></div></td><td width="49%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_SignMfgContact" type="hidden" value="1">
<select name="SignMfgContact" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ||  (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="width=100%; background:TRANSPARENT;">
<option>---
<option>Alma Calimlim
<option>Bob Harriett
<option>Brian Hershelman
<option>Brian Hunt
<option>Brina Hunt
<option>Derek Hedlund
<option>Elliott Smith
<option>Garry Bruce
<option>Heather Richert
<option>Jerry Bax
<option>Joanna Balderas
<option>JoAnna Balderas
<option>Kim Bukovsky
<option>Lucille Holluba
<option>Maint. 1 800 366-6566
<option>Taren Sitter
<option>Taren Sitter
<option>Tim Gustafson
<option>Tracey Staley
<option>Victoria Carr
<option>Vince DeSantis</select>
</font></td></tr>
</table>

<table bordercolorlight="#000000" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">FPD&amp;E Assignment:</font></div></td><td width="100%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_FPDAssignment" type="hidden" value="1">
<select name="FPDAssignment" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}">
<option>
<option>Aaron Antonio/Corp/Walgreens
<option>Sam Byrd/Corp/Walgreens
<option selected>Curt Frericks/Corp/Walgreens
<option>Drew Kowalyszyn/Corp/Walgreens
<option>Marc Mangiantini/Corp/Walgreens
<option>Andy Stella/Corp/Walgreens
<option>Christina Galgan/Corp/Walgreens
<option>Brant Heflin/Corp/Walgreens
<option>Jim Hollis/Corp/Walgreens
<option>Zak Klobucar/Corp/Walgreens
<option>Michael Rivera/Corp/Walgreens
<option>Planner Assignment N/A
<option>D-G-Contact Christina Galgan
<option>J-W-Contact Christina Galgan
<option>L-P-Contact Christina Galgan
<option>MDT-Contact Christina Galgan
<option>C-L-Contact Christina Galgan
<option>RRH-Contact Christina Galgan
<option>TLF-Contact Christina Galgan
<option>LED Conversion</select>
</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">Sign Installer:</font></div></td><td width="100%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_SignInstallerFullName" type="hidden" value="1">
<select name="SignInstallerFullName" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ||  (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="width=100%; background:TRANSPARENT;">
<option>---
<option>1 Hour Signs
<option>A-1 Sign &amp; Crane LLC &gt;&gt;&gt; Chuck Nate
<option>A Sign By Design &gt;&gt;&gt; Gail Romine
<option>A1A Signs
<option>AA Thrift Signs &amp; Service &gt;&gt;&gt; Herb Jackson
<option>AAA Custom sign
<option>AAvanced Sign
<option>ABC Signs &amp; Awnings
<option>Accent Graphics
<option>Ace Sign Co
<option>Ace Signs
<option>Acme Sign
<option>Acme Signs
<option>Acme Signs Inc.
<option>Acolite Claude United Sign Co
<option>Acura Neon Inc. &gt;&gt;&gt; Melissa
<option>AD Lab Identity Grou[ &gt;&gt;&gt; Jeff Ferguson
<option>Ad Lite
<option>Ad Lite Signs
<option>Ad Man Signs
<option>Adams Outdoor Advertising
<option>Adams Signs
<option>AdCraft &gt;&gt;&gt; Mike
<option>Advance Sign
<option>Advance Signs
<option>Advance Signs &amp; Service Inc.
<option>Advanced Power Technologies
<option>Advantage Sign Co.
<option>Advantech
<option>All Brite Sign Co &gt;&gt;&gt; Bill Mumaw
<option>All Star Sign Co
<option>Allen Sign and Lighting
<option>Allied Awning
<option>Allied Signs
<option>Allsouth Signs &gt;&gt;&gt; Keith/ Teresa Willcutt
<option>Allstate Sign Company &gt;&gt;&gt; Mike
<option>Alpine Sign &amp; Lighting &gt;&gt;&gt; Doug Bray
<option>Altair Signs &amp; Light
<option>Altec Sign Group &gt;&gt;&gt; Florida
<option>American Sign and Crane Service
<option>American Signs
<option>Amtech Lighting Services
<option>Aner Signs
<option>Apollo Sign &amp; Lighting &gt;&gt;&gt; Roger Reid
<option>Appearance Products
<option>Archer Sign
<option>ARK-LA-TEX SUPERIOR SIGNS &gt;&gt;&gt; Randall Liles
<option>Arkansas Sign and Neon
<option>Arms Sign Inc
<option>Arrow Signs
<option>Art Kraft Signs
<option>Art Sign Co &gt;&gt;&gt; Joe Dillard
<option>Artistic Neon and Signs, Inc &gt;&gt;&gt; Jim Rowe
<option>Artlite Sign Company
<option>Atlas Signs
<option>Aver Sign Company &gt;&gt;&gt; Terry or Brad
<option>A.D.S. Signs &gt;&gt;&gt; Nanci Cernak
<option>B-Line Sign Company
<option>Back Bay Sign Company
<option>Baker Signs
<option>Barker Sign Company
<option>Barlo Signs &gt;&gt;&gt; Kristen
<option>Baron Signs
<option>Barret Sign
<option>Basic Sign Company
<option>Batten Bros. Inc. &gt;&gt;&gt; Jerry Winter
<option>Beaumont Sign Co., Inc.
<option>Bee Dee Signs
<option>Berlin Signs
<option>Besco Signs &gt;&gt;&gt; Shirley Blankenship
<option>Bill David Signs
<option>Bill &gt;&gt;&gt; South Colorado Sign Co
<option>BJ SIGN ERECTORS
<option>Blaze Sign Co &gt;&gt;&gt; Tony
<option>Bodine Elecyric &gt;&gt;&gt; Buck Buchanan
<option>Boom Sign &amp; Lighting
<option>Bossier Sign Co. &gt;&gt;&gt; John
<option>Boyer Signs
<option>BP Sign &gt;&gt;&gt; Bob Peters
<option>Brister Signs &gt;&gt;&gt; Diana
<option>Bristol Sign Co. &gt;&gt;&gt; Joe Walden
<option>Brite-Lite
<option>Brooks Gray Sign Company
<option>Brown Signs
<option>Budget Signs &gt;&gt;&gt; Ed Doyle
<option>Built Rite SIgns &gt;&gt;&gt; Frank
<option>Burchette Sign Corp &gt;&gt;&gt; Laura
<option>Burkett Sign Co Inc. &gt;&gt;&gt; Jane
<option>Burkhart Adv
<option>Bushby Signs
<option>B&amp;B Signs
<option>Cal Neon
<option>Callahan Sign Company &gt;&gt;&gt; Joe Lucas
<option>Canedy Sign &amp; Graphics &gt;&gt;&gt; David Heisserer
<option>Capital Signs
<option>Capitol City Neon
<option>Capitol City Signs
<option>Cardinal Sign Corp &gt;&gt;&gt; Jerry Phelps
<option>Carl Mack Signs &gt;&gt;&gt; Sue
<option>Carnes Sign Inc.
<option>Carolina Custom Signs
<option>Carpenter Sign
<option>Carroll Installations
<option>Casco Signs
<option>Central Jersey Sign Ad
<option>Central Sign and Crane
<option>Centredale Sign Company
<option>Century Sign Services &gt;&gt;&gt; Bob Daniels
<option>Century Signs, Inc.
<option>Charleston Sign &amp; Banner
<option>Chestnut Signs
<option>Chicago Sign
<option>Cicogna Electric Sign
<option>City Neon
<option>City Sign Erectors
<option>City Sign LLC
<option>City Sign Service
<option>Claude Federal Neon
<option>CNS Signs &gt;&gt;&gt; Ken
<option>Coastal Signs
<option>Collins Signs Inc
<option>Columbia Sign
<option>Commonwealth Signs &gt;&gt;&gt; Tom Jolly
<option>Complete Lighting
<option>Cook Neon Signs, Inc &gt;&gt;&gt; Fred Redwine
<option>Corporate Signs &gt;&gt;&gt; James
<option>Creative Dimensions
<option>Creative Signs
<option>Cuerden Sign Co.
<option>Culbertson Sign Service
<option>Custom Neon &amp; Graphics &gt;&gt;&gt; Virgina
<option>Custom Sign &amp; Engineering &gt;&gt;&gt; Jack
<option>Cypress Signs
<option>C&amp;S Signs LLC Altomonte Springs
<option>C&amp;S Signs Milton FL
<option>C. &amp; E. Sign Co.
<option>D and L Signs &gt;&gt;&gt; Attn: Don or Randy
<option>Dalmarc Signs
<option>Dan Cashdan
<option>Darrell's Sign and Crane
<option>Davidson Signs
<option>Day Sign Co &gt;&gt;&gt; Jerry
<option>De James Builders, Inc.
<option>De Mond Signs
<option>Delta Signs
<option>Denver Sign Systems (National Signs)
<option>Derby City Signs
<option>Design &amp; Signs by Anderson &gt;&gt;&gt; Doug Beckman
<option>Dixie Signs
<option>Dodd Signs
<option>Double M Signs
<option>Doyle Signs Inc
<option>Dwinell's Signage Solutions &gt;&gt;&gt; Mandi
<option>Dynamic Sign Corporation
<option>D&amp;R Electric &amp; Neon Signs, Inc.
<option>Eagle Sign Co.
<option>Eagle Signs
<option>East Coast Installations &gt;&gt;&gt; Mike Weiler
<option>East Coast Signs &gt;&gt;&gt; Formerly Icon East Coast Signs
<option>Eberhardt Sign
<option>Eberhart Sign
<option>Economy Signs
<option>Elite Sign
<option>Empire Signs
<option>Epcon Signs &gt;&gt;&gt; Linda
<option>ES&amp;A Sign and Awning
<option>Everbrite, Inc.
<option>FB Sign &amp; Repair
<option>Feig Signs &gt;&gt;&gt; Contact: Clete
<option>Ferrin Signs
<option>Finuf Sign Co. &gt;&gt;&gt; Ray or Chris
<option>Fix It Signs
<option>Florida Certified Sign Erectors &gt;&gt;&gt; David Hughes
<option>Fluoresco
<option>Fluoresco &gt;&gt;&gt; Los Angeles
<option>Fluoresco &gt;&gt;&gt; San Francisco
<option>Forest Sign &gt;&gt;&gt; Don Jesswein
<option>Forman Signs
<option>Frank Balton &amp; Co., Inc. &gt;&gt;&gt; Chris Balton
<option>Freeman Signs
<option>Gable Signs
<option>Galaxy Sign &amp; Hoisting Co &gt;&gt;&gt; Larry
<option>Galesburg Sign &amp; Lighting
<option>Garrett Sign Co &gt;&gt;&gt; Brian Way
<option>Garrison Bros. Signs
<option>Gary Sign
<option>Gem Signs
<option>General Sign
<option>General Signs
<option>George Lay Signs
<option>Globmaster Sign Co.
<option>GM Design
<option>Godwin ANd Sons &gt;&gt;&gt; Stuart
<option>Golden Gate Neon
<option>Golden West Advertising
<option>Gray Brooks
<option>GRC Construction Services
<option>Great Lakes Electric Sign Co.
<option>Great Lakes Sign
<option>Green Sign Co &gt;&gt;&gt; Rose
<option>Greer Neon &gt;&gt;&gt; Keith
<option>Gulf Coast Signs
<option>Hall Sign Co
<option>Hansen Sign Co
<option>Harder Signs &gt;&gt;&gt; John Harder
<option>Hardin Sign
<option>Harrell Sign Co &gt;&gt;&gt; Jennifer Miller
<option>Harvey Signs
<option>Hayes Triangle Signs
<option>Haynes Fluorescent &amp; Neon
<option>Heileman &amp; Sons Inc. &gt;&gt;&gt; Dan Heileman
<option>Heritage Neon
<option>Highway Neon
<option>Hilton Head Signs
<option>Horael Signs
<option>Hupp Neon &gt;&gt;&gt; Joe Hupp
<option>H&amp;H Sign Co.
<option>H&amp;M Signs Inc.
<option>H. A. Balton
<option>Icon Identity Solutions
<option>Icon Midwest &gt;&gt;&gt; formerly Acme Wiley
<option>Image Sign Co.
<option>Images Graphic specialists, Inc.
<option>Impact Sign Co. &gt;&gt;&gt; Jon Himes
<option>International Sign &amp; Design
<option>Interstate Signcrafters--- Blackballed
<option>Interstate Signcrafters -- Blackballed
<option>Irwin Custom Sign Co
<option>I.H. McBride &gt;&gt;&gt; Lawrence McBride
<option>Jack Ivey Signs &gt;&gt;&gt; Jack W Ivey
<option>Jakco Sign Co.
<option>James Sign
<option>Jayhawk Signs
<option>Jenkins Signs
<option>Jimco Signs &gt;&gt;&gt; Jim Compton
<option>JNB
<option>JNB &gt;&gt;&gt; Wisconsin
<option>John Ray Signs
<option>Johnson Sign
<option>Jones Sign Co.
<option>jQuincy Electric &amp; Signs &gt;&gt;&gt; James McEwen
<option>Justras Signs Co &gt;&gt;&gt; Joe Champagne
<option>J&amp;J Signs
<option>Kajun Signs
<option>Karlosky Signs
<option>KC Sign Express
<option>Ken's Signs
<option>Kieffer and Co.
<option>Kinsey Crane &amp; Sign
<option>La Crosse Sign
<option>LaGrange Sign Co.
<option>Landmark Sign Company
<option>Legacy Signs
<option>Lemburg Electrical
<option>Leon Signs
<option>Lewis Sign Builders, Inc.
<option>Light-Right
<option>Light Inc.
<option>Lite-Rite Signs
<option>Lone Star Signs
<option>Lott Sign Service &gt;&gt;&gt; Renee &amp; Steve Lott
<option>Love Signs
<option>LSC Signs, Inc &gt;&gt;&gt; Shane Simeral
<option>Lumin-Art Signs
<option>Luminous Neon
<option>Luminous Neon &gt;&gt;&gt; Olathe Office
<option>Luminous Neon, Inc &gt;&gt;&gt; Hutchinson Office
<option>Luminous Neon, Inc.
<option>Luminous Neon, Inc. &gt;&gt;&gt; Dodge City Office
<option>Luminous Neon, Inc. &gt;&gt;&gt; Liberal Officer
<option>Luminous Neon, Inc. &gt;&gt;&gt; Salina Office
<option>Mack Thompson and Son
<option>Mackoul Electric
<option>Macon Custom Signs
<option>Magee Signs
<option>Marathon Electric Sign &amp; Light, Inc.
<option>Marathon Electric Sin &amp; Light &gt;&gt;&gt; Randy
<option>Marsters Sign Co
<option>Martens Sign Art
<option>Martin Bros. Signs
<option>Mattox Advertising &gt;&gt;&gt; Harley Mattox
<option>Mayer Signs
<option>MC Signs
<option>McBride Signs
<option>McHales Neon &amp; Plastic &gt;&gt;&gt; Pat Corey
<option>McNeill Signs
<option>Medallion Signs
<option>Memphis Sign
<option>Memphis Sign Erectors
<option>Metro Detroit
<option>Meyer Sign Company
<option>Meyer Sign Company &gt;&gt;&gt; Denny
<option>Michael's Signs
<option>Michael Anthony Signs
<option>Michael Naffah Signs
<option>Mid Iowa Signs
<option>Midway Signs &gt;&gt;&gt; Pat
<option>Midwest Inc.
<option>Midwest Sign
<option>Midwest Signs, Inc.
<option>Midwest Signworks &gt;&gt;&gt; c/o Randy Barnett
<option>Midwest Sunray
<option>Mitchell Electric
<option>MLS Signs., Inc. &gt;&gt;&gt; Mark
<option>Modern Neon &amp; Plastic
<option>Modern Signs
<option>Monitor Sign Service &gt;&gt;&gt; Dennis
<option>Moss Sign Co &gt;&gt;&gt; Ronnie Moss
<option>Multi Signs of P.R. Corp. &gt;&gt;&gt; Puerto Rico
<option>Munn Enterprises
<option>M&amp;K Signs
<option>M&amp;M Signs &gt;&gt;&gt; North Carolina
<option>National Maintenance
<option>National Sign Co
<option>National Signs
<option>Ne-Op Company
<option>Neon Service
<option>Neon Sign and Service
<option>Nesper
<option>Nesper Sign
<option>New England Signs
<option>North Shore Sign &gt;&gt;&gt; Kevin Lasks
<option>Northstar Sign &amp; Design
<option>Not Applicable
<option>NSI National Sign Company
<option>Nusbaum Realty &gt;&gt;&gt; See S. L. Nusbaum
<option>N&amp;W Signs
<option>Oklahoma Neon
<option>Omaha Neon Sign Co Inc
<option>Outdoor Images
<option>Pacific Coast Neon &gt;&gt;&gt; Frank Lock
<option>Page1 Signs
<option>Panhandle Signs
<option>Permit Me
<option>Plano Sign, Inc.
<option>Platinum Sign Co &gt;&gt;&gt; Mike Blackwekder Jr
<option>Plumb Signs
<option>Port City Sign
<option>Portland Electrical Adv
<option>Portland Electrical &amp; Advertising
<option>Prairie Signs
<option>Precision Signs &gt;&gt;&gt; John Larson
<option>Premier Sign
<option>Premiere Signs
<option>Pride Neon
<option>Pro Signs, Inc
<option value="_ha595682jd5jmssp07ov3s82ad5mi0hrfe9i6urg9_">QRS Signs &gt;&gt;&gt; Jim Gordon      
<option>Quality Signs &amp; Service
<option>Radding Sign
<option>Rainbow SIgn and Banner &gt;&gt;&gt; Steve Davis
<option>Reinhold Sign
<option>Ricks Sign Shop
<option>Rising Sign Production
<option>Roderick Sign &gt;&gt;&gt; Attn: Jeff
<option>Rosenbaum's Signs &gt;&gt;&gt; Eric Farrar
<option>Rosson Signs &gt;&gt;&gt; Jack
<option>Roth Sign Co. &gt;&gt;&gt; David Roth
<option>Ruggles Sign Co.
<option>R.W.L. Sign Company &gt;&gt;&gt; Tim Wight
<option>Salem Sign
<option>San Juan SIgns, Inc &gt;&gt;&gt; Roger
<option>Sanders Advertising
<option>Scenic Sign Corp &gt;&gt;&gt; John Dezurik
<option>Schurle Signs, Inc.
<option>Schwartz Electric Company, Inc
<option>Sea Byrd Sign Co
<option>Sebastion Sign &amp; Crane
<option>Security Signs
<option>Seminole Signs &gt;&gt;&gt; Angie
<option>Sendro Electric
<option>Serrato Signs
<option>Shelton Signs
<option>Sign-A-Rama
<option>Sign-O-Graph &gt;&gt;&gt; Terry Abrahamian
<option>Sign-Tech Industries &gt;&gt;&gt; Marion Duncan
<option>Sign a Rama &gt;&gt;&gt; Bob Doyle
<option>Sign Art
<option>Sign Art of New Mexico
<option>Sign Centers
<option>Sign Corporation
<option>Sign Craft &gt;&gt;&gt; Florida
<option>Sign Craft &gt;&gt;&gt; Wisconsin
<option>Sign Crafters -
<option>Sign Crafters USA
<option>Sign Crafters &gt;&gt;&gt; Mark Browning
<option>Sign Craft, Inc. &gt;&gt;&gt; Carrie
<option>Sign Depot
<option>Sign Engineering
<option>Sign Erectors, Inc.
<option>Sign Factory
<option>Sign Guyz &gt;&gt;&gt; Chris Petros
<option>Sign Here Inc &gt;&gt;&gt; Dave Fesemeyer
<option>Sign Lite Inc &gt;&gt;&gt; Ken Detiullio
<option>Sign Mart
<option>Sign Products &gt;&gt;&gt; Terry
<option>Sign Services &gt;&gt;&gt; Dee Pool
<option>Sign Shop
<option>Sign Solutions &gt;&gt;&gt; Mike Strope
<option>Sign Systems
<option>Sign Vision Company
<option>Sign Works &gt;&gt;&gt; Lee Pittman
<option>Sign World Inc.
<option>Sign Xpress &gt;&gt;&gt; Ray Sheldon
<option>Sign &amp; Lighting services &gt;&gt;&gt; Kirk Wright
<option>Signa Unlimited Lc &gt;&gt;&gt; Mark
<option>Signal Signs of GA
<option>Signature Sign and Graphics, Inc &gt;&gt;&gt; GLEN WEGNER
<option>Signco
<option>Signex
<option>Signman
<option>Signs by Joam Futch &gt;&gt;&gt; Lyle Witherow
<option>Signs For the Times
<option>Signs Inc
<option>Signs Now &gt;&gt;&gt; Daniel
<option>Signs of Integrity
<option>Signs Plus &gt;&gt;&gt; IA
<option>Signs Unlimited
<option>Signs Unlimited LC &gt;&gt;&gt; Mark
<option>Signs &amp; Graphics
<option>Signs &amp; Signs, Inc. &gt;&gt;&gt; John Boykin
<option>Signtech &gt;&gt;&gt; Steve Haven
<option>Signtech &gt;&gt;&gt; Steve Havens
<option>Simmons Industries Inc
<option>Simon Signs
<option>Skyline Electric &gt;&gt;&gt; Edward Spocka
<option>Smartlite Company &gt;&gt;&gt; Tom Bradford
<option>Sneed Signs
<option>Sneed Signs &amp; Electric
<option>Snyder Signs
<option>South Colorado Sign Co &gt;&gt;&gt; Bill
<option>Souther Advertising
<option>Southern Advertising
<option>Southernmost Signs &gt;&gt;&gt; Margy
<option>Sparkle Sign Co.
<option>Springfield Sign &amp; Neon
<option>Springfield Signs &gt;&gt;&gt; joe O'Neill
<option>Starlite Sign &gt;&gt;&gt; Terry Brockett
<option>State Sign
<option>State Sign Co.
<option>Super Neon
<option>Super Sign
<option>Superior Light &amp; Sign Maintenance
<option>Talley Sign Co.
<option>Tally Anchor Signs
<option>The Jenkins Company
<option>The Sign Co of Tallahassee
<option>The Sign Gallery
<option>The Sign Man
<option>The Smartlite Company &gt;&gt;&gt; Tom Bradford
<option>The Woods at Russell Creek, F. P.
<option>Thomas Campbell Signs
<option>Tim's Sign &amp; Lighting Service, Inc &gt;&gt;&gt; Tim
<option>Timely Signs of Kingston &gt;&gt;&gt; Ozzie Beichert
<option>Titan Sign &amp; Awning Corp &gt;&gt;&gt; Chuck
<option>Todd Signs &gt;&gt;&gt; Todd Johnson
<option>Trademark Signs &gt;&gt;&gt; Regina Kelly
<option>TRC Services
<option>Tropical Signs of Florida &gt;&gt;&gt; Alec
<option>Tru-Art Sign Company
<option>Trulite Signs
<option>Turn Roth Sign Co
<option>UA Sign Service &amp; Installation &gt;&gt;&gt; Berry Belsky
<option>United Sign Corporation
<option>Universal Signs
<option>Universal Signs, Inc.
<option>Universal Signs, Inc. &gt;&gt;&gt; Rick
<option>US Signs
<option>Valley Electric &gt;&gt;&gt; Mark
<option>Vancouver Sign Co
<option>Victory Sign
<option>Vin Kumar
<option>Vision Signs
<option>Visual Sign COrp &gt;&gt;&gt; Mark
<option>VMC Signs &gt;&gt;&gt; Albie McElroy
<option>Wade McClure
<option>Wagner Electric Sign Co.
<option>Waky Signs &amp; Construction &gt;&gt;&gt; Lou
<option>Walgreens
<option>Walter Wong
<option>Warren Sign
<option>Waters Sign Co.
<option>Weber Sign
<option>West Coast Signs
<option>West Michigan Neon
<option>Western Neon
<option>Whatley Signs
<option>Wilcox Brothers
<option>Wilhite Sign Co. &gt;&gt;&gt; Bobbie Nichols
<option>Wilson Sign Co., Inc.
<option>Wirco Signs
<option>Wisco Sign
<option>Woodall Sign &amp; Crane
<option>Wrico Signs &gt;&gt;&gt; Wae Wright
<option>W.A.K.Y Signs
<option>Zimmerman Enterprises</select>
</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
</td><td width="100%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="1%" bgcolor="#FFE0E6"><img src="/icons/ecblank.gif" border="0" height="1" width="168" alt=""><br>
<div align="right"><font size="2" face="Arial">Site Contact and Phone Number:</font></div></td><td width="100%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>

<textarea name="SiteContact" cols=60 rows=2 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ||  (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="width=100%; overflow:AUTO;"></textarea>
</td></tr>
</table>
</DIV><DIV ID=tab2>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="34%" bgcolor="#009FC2" rowspan="2" valign="bottom"><div align="center">
<input type="button" onclick="var doc = document.forms[0];
doc.style.cursor=&quot;wait&quot;;
alert(&quot;The following keywords require manual updates:  Type, Id Cab Size, Id Verbiage, OAH, Shared, Restrictions&quot;);
window.status=&quot;UPDATING LED DEFAULTS...&quot;;
doc.SaveMode.value = &quot;Y&quot;;
doc.updateSignDetail.click();
" onmouseover="this.style.background='white';" onmouseout="this.style.background='#C0C0C0';" value="Update LED Defaults" style="height=20; color=BLACK; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#C0C0C0"></div></td><td width="33%" bgcolor="#009FC2" valign="middle"><div align="center"><b><font size="2" face="Arial">Ground/Blade Sign Detail</font></b></div></td><td width="33%" bgcolor="#009FC2"><div align="right">
<input type="button" onclick="printDiv();
" onmouseover="var doc = document.forms[0];
this.style.color='blue';" onmouseout="this.style.color='white';" value="Print" style="color=white; font-size=10pt; font-weight=BOLD; background-color=transparent;"></div></td></tr>

<tr valign="top"><td width="33%" bgcolor="#0082BF"><div align="center">
<input type="button" onclick="showtab(21);

var doc = document.forms[0];
this.style.background = '#0082BF';
button22.style.background = '#C0C0C0';" onmouseover="this.style.background='#0082A0';" onmouseout="if (signtab == &quot;tab21&quot;)
{
      this.style.background='#0082BF';
}
else
      this.style.background='#C0C0C0';" value="View Sign 1 &amp; Sign 2" id="button21" style="width=100%; color=#FFFFFF; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#0082BF; border-width=0;" name="button21"></div></td><td width="33%" bgcolor="#0060A0"><div align="center">
<input type="button" onclick="showtab(22);

var doc = document.forms[0];
this.style.background = '#0060A0';
button21.style.background = '#C0C0C0';" onmouseover="this.style.background='#005582';" onmouseout="if (signtab == &quot;tab22&quot;)
{
      this.style.background='#0060A0';
}
else
      this.style.background='#C0C0C0';" value="View Sign 3 &amp; Sign 4" id="button22" style="width=100%; color=#FFFFFF; font-size=8pt; font-weight=BOLD; text-decoration=UNDERLINE; background-color=#C0C0C0; border-width=0;" name="button22"></div></td></tr>
</table>
<DIV ID="tab21" style="overflow:auto;height=325px;width=100%;">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#0082BF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#0082BF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="center"><b><font size="2" color="#FFFFFF" face="Arial">Sign 1</font></b></div></td><td width="1%" bgcolor="#0082BF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
<font size="2" color="#ff0000" face="Arial">
<input name="focusTOsecondarySign" value="" tabindex=52 onfocus="var doc = document.forms[0];
doc.SecondarySign.focus();" style="border=0; background-color=TRANSPARENT; width=1px; height=1px;"></font></td><td width="50%" bgcolor="#0082BF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="center"><b><font size="2" color="#FFFFFF" face="Arial">Sign 2</font></b></div></td><td width="1%" bgcolor="#0082BF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Type:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_PrimarySign" type="hidden" value="1">
<select name="PrimarySign" tabindex=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt; width=100%">
<option>
<option>None
<option selected>RBP
<option>LED RBP
<option>Monument RB
<option>Shared Monument RBD
<option>LED Shared Monument RBD
<option>LED Monument RB
<option>Vegas RBP
<option>Vegas LED RBP
<option>Shared RBP
<option>Shared LED RBP
<option>Pylon I.D.
<option>Shared Pylon I.D.
<option>Monument I.D.
<option>Shared Monument I.D.
<option>Wall-Mount LED
<option>Wall-Mount RB
<option>Blade LED
<option>Blade RBD
<option>Blade I.D.
<option>Directional
<option>LL Electronic RBD
<option>American Electronic RBD</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_SecondarySign" type="hidden" value="1">
<select name="SecondarySign" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option>
<option>None
<option>RBP
<option>LED RBP
<option>Monument RB
<option>Shared Monument RBD
<option>LED Shared Monument RBD
<option>LED Monument RB
<option>Vegas RBP
<option>Vegas LED RBP
<option>Shared RBP
<option>Shared LED RBP
<option>Pylon I.D.
<option>Shared Pylon I.D.
<option>Monument I.D.
<option>Shared Monument I.D.
<option>Wall-Mount LED
<option>Wall-Mount RB
<option>Blade LED
<option>Blade RBD
<option>Blade I.D.
<option>Directional
<option>LL Electronic RBD
<option>American Electronic RBD</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Street Facing:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="PriSignStreet" value="" tabindex=2 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="SecSignStreet" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Direction Facing:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_PriStreetDir" type="hidden" value="1">
<select name="PriStreetDir" tabindex=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ||  (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>N/S
<option>E/W</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_SecStreetDir" type="hidden" value="1">
<select name="SecStreetDir" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>N/S
<option>E/W</select>
</font><font size="2" face="Arial"> </font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">ID Cab Size:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDCabSize1" type="hidden" value="1">
<select name="IDCabSize1" tabindex=4 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>2' 7&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3' 7&quot; x 12' 3&quot;
<option>5'x16'
<option>4'x14'
<option>8'x25'
<option>Other</select>
</font><font size="2" color="#FF00FF" face="Arial"> </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDCabSize2" type="hidden" value="1">
<select name="IDCabSize2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>2' 7&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3' 7&quot; x 12' 3&quot;
<option>5'x16'
<option>4'x14'
<option>8'x25'
<option>Other</select>
</font><font size="2" face="Arial">  </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDCabSizeOther1" value="" MAXLENGTH=60 tabindex=5 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDCabSizeOther2" value="" MAXLENGTH=60 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font><font size="2" face="Arial">  </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">ID Verbiage:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDVerbage1" type="hidden" value="1">
<input type="checkbox" name="IDVerbage1" tabindex=6 value="Mortar &amp; Pestle" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">Mortar &amp; Pestle<br>

<input type="checkbox" name="IDVerbage1" tabindex=6 value="Walgreens" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">Walgreens<br>

<input type="checkbox" name="IDVerbage1" tabindex=6 value="W Logo" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">W Logo<br>

<input type="checkbox" name="IDVerbage1" tabindex=6 value="Drive-Thru Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">Drive-Thru Pharmacy<br>

<input type="checkbox" name="IDVerbage1" tabindex=6 value="24-Hours" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">24-Hours<br>

<input type="checkbox" name="IDVerbage1" tabindex=6 value="Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">Pharmacy<br>

<input type="checkbox" name="IDVerbage1" tabindex=6 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">Other</font><font size="2" face="Arial"> </font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDVerbage2" type="hidden" value="1">
<input type="checkbox" name="IDVerbage2" value="Mortar &amp; Pestle" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">Mortar &amp; Pestle<br>

<input type="checkbox" name="IDVerbage2" value="Walgreens" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">Walgreens<br>

<input type="checkbox" name="IDVerbage2" value="W Logo" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">W Logo<br>

<input type="checkbox" name="IDVerbage2" value="Drive-Thru Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">Drive-Thru Pharmacy<br>

<input type="checkbox" name="IDVerbage2" value="24-Hours" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">24-Hours<br>

<input type="checkbox" name="IDVerbage2" value="Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">Pharmacy<br>

<input type="checkbox" name="IDVerbage2" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt;">Other</font><font size="2" face="Arial">  </font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other</font><font size="2" face="Arial">:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDVerbageOther1" value="" tabindex=7 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDVerbageOther2" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RDB Size:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabSize1" type="hidden" value="1">
<select name="RdbCabSize1" tabindex=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>2'8&quot; x 5'9&quot;
<option>2'8&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 9'2&quot;
<option>4'3&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3'8&quot; x 10'11&quot;
<option>5' x 15'4&quot;
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabSize2" type="hidden" value="1">
<select name="RdbCabSize2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%;">
<option selected>
<option>2'8&quot; x 5'9&quot;
<option>2'8&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 9'2&quot;
<option>4'3&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3'8&quot; x 10'11&quot;
<option>5' x 15'4&quot;
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other (Height x Width):</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbCabSize1HFt" value="" SIZE=3 MAXLENGTH=3 tabindex=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize1HFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize1HFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize1HFt.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt;"></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize1HIn" value="" SIZE=2 MAXLENGTH=2 tabindex=10 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize1HIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize1HIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize1HIn.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt;"></font><font size="2" face="Arial">&quot;</font><font size="1" face="Arial"> </font><font size="2" face="Arial">x</font><font size="1" face="Arial"> </font><font size="2" face="Arial">
<input name="RdbCabSize1WFt" value="" SIZE=3 MAXLENGTH=3 tabindex=11 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize1WFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize1WFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize1WFt.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt;"></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize1WIn" value="" SIZE=2 MAXLENGTH=2 tabindex=12 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize1WIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize1WIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize1WIn.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt;"></font><font size="2" face="Arial">&quot;</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbCabSize2HFt" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize2HFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize2HFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize2HFt.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt; "></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize2HIn" value="" SIZE=2 MAXLENGTH=2 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize2HIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize2HIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize2HIn.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt; "></font><font size="2" face="Arial">&quot; x </font><font size="2" face="Arial">
<input name="RdbCabSize2WFt" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize2WFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize2WFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize2WFt.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt; "></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize2WIn" value="" SIZE=2 MAXLENGTH=2 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize1WIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize1WIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize1WIn.focus();
                            return false;                            
      }" style="font-family:arial; font-size:8pt;"></font><font size="2" face="Arial">&quot;</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RDB Type:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabType1" type="hidden" value="1">
<select name="RdbCabType1" tabindex=13 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Manual
<option>LED
<option>None</select>
</font><font size="2" face="Arial"> </font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabType2" type="hidden" value="1">
<select name="RdbCabType2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Manual
<option>LED
<option>None</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Software: </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Software1" type="hidden" value="1">
<select name="Software1" tabindex=14 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )|| (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>Complay 3.5
<option>Complay 2000
<option>Venus 1500
<option>Complay 3.5.44G
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Software2" type="hidden" value="1">
<select name="Software2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>Complay 3.5
<option>Complay 2000
<option>Venus 1500
<option>Complay 3.5.44G
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="SoftwareOther1" value="" MAXLENGTH=30 tabindex=15 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="SoftwareOther2" value="" MAXLENGTH=30  onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">CPU:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_CPU1" type="hidden" value="1">
<select name="CPU1" tabindex=16 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>HX+
<option>HX1
<option>M2
<option>MDC
<option>Z180
<option>Other</select>
</font><font size="2" face="Arial">   </font><font size="1" face="Arial"> </font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_CPU2" type="hidden" value="1">
<select name="CPU2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>HX+
<option>HX1
<option>M2
<option>MDC
<option>Z180
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="CPUOther1" value="" MAXLENGTH=30 tabindex=17 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="CPUOther2" value="" MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Baud Type:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_BaudType1" type="hidden" value="1">
<select name="BaudType1" tabindex=18 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))      {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>115200
<option>19200
<option>Other</select>
</font><font size="2" face="Arial">  </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_BaudType2" type="hidden" value="1">
<select name="BaudType2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>115200
<option>19200
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font><font size="2" face="Arial"> </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="BaudTypeOther1" value="" MAXLENGTH=30 tabindex=19 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))      {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="BaudTypeOther2" value="" MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED RDB Color:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbColor1" type="hidden" value="1">
<select name="RdbColor1" tabindex=20 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))      {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>1/3 Full Color 2/3 Red
<option>Red
<option>Full Color
<option>Full as White
<option>Amber
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbColor2" type="hidden" value="1">
<select name="RdbColor2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>1/3 Full Color 2/3 Red
<option>Red
<option>Full Color
<option>Full as White
<option>Amber
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbColorOther1" value="" MAXLENGTH=35 tabindex=21 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbColorOther2" value="" MAXLENGTH=35 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Graphic Type:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_GraphicType1" type="hidden" value="1">
<select name="GraphicType1" tabindex=22 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>Full
<option>Partial</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_GraphicType2" type="hidden" value="1">
<select name="GraphicType2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Full
<option>Partial</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Full Color Resolution:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDColorRes1" type="hidden" value="1">
<select name="LEDColorRes1" tabindex=23 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) ||
(doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) ||
(doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDColorRes2" type="hidden" value="1">
<select name="LEDColorRes2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font><font size="2" face="Arial"> </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDColorResOther1" value="" MAXLENGTH=16 tabindex=24 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDColorResOther2" value="" MAXLENGTH=16 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Monochrome Resolution:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRes1" type="hidden" value="1">
<select name="LEDRes1" tabindex=25 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating Sign Detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font><font size="2" face="Arial"> </font><font size="1" face="Arial"> </font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRes2" type="hidden" value="1">
<select name="LEDRes2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other: </font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDResOther1" value="" MAXLENGTH=16 tabindex=26 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating Sign Detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDResOther2" value="" MAXLENGTH=16 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Full Color Pixels:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_PixelsColor1" type="hidden" value="1">
<select name="PixelsColor1" tabindex=27 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_PixelsColor2" type="hidden" value="1">
<select name="PixelsColor2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="PixelsColor1H" value="" SIZE=3 MAXLENGTH=3 tabindex=28 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor1H.value)) &amp;&amp; (!isNumeric(doc.PixelsColor1H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor1H.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; "></font><font size="1" face="Arial"> </font><font size="2" face="Arial">x</font><font size="1" face="Arial"> </font><font size="2" face="Arial">
<input name="PixelsColor1W" value="" SIZE=3 MAXLENGTH=3 tabindex=29 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor1W.value)) &amp;&amp; (!isNumeric(doc.PixelsColor1W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor1W.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; "></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="PixelsColor2H" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor2H.value)) &amp;&amp; (!isNumeric(doc.PixelsColor2H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor2H.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; "></font><font size="1" face="Arial"> </font><font size="2" face="Arial">x</font><font size="1" face="Arial"> </font><font size="2" face="Arial">
<input name="PixelsColor2W" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor2W.value)) &amp;&amp; (!isNumeric(doc.PixelsColor2W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor2W.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; "></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Monochrome Pixels:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Pixels1" type="hidden" value="1">
<select name="Pixels1" tabindex=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating Sign Detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Pixels2" type="hidden" value="1">
<select name="Pixels2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font><font size="2" face="Arial"> </font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="Pixels1H" value="" SIZE=3 MAXLENGTH=3 tabindex=31 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating Sign Detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels1H.value)) &amp;&amp; (!isNumeric(doc.Pixels1H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
     doc.Pixels1H.focus();
          return false;                            
}" style="font-family:arial; font-size:8pt;"></font><font size="1" face="Arial"> </font><font size="2" face="Arial">x</font><font size="1" face="Arial"> </font><font size="2" face="Arial">
<input name="Pixels1W" value="" SIZE=3 MAXLENGTH=3 tabindex=32 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating Sign Detail.&quot;);
      doc.PrimarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels1W.value)) &amp;&amp; (!isNumeric(doc.Pixels1W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.Pixels1W.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt;"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="Pixels2H" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels2H.value)) &amp;&amp; (!isNumeric(doc.Pixels2H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
     doc.Pixels2H.focus();
          return false;                            
}" style="font-family:arial; font-size:8pt; "></font><font size="1" face="Arial"> </font><font size="2" face="Arial">x </font><font size="2" face="Arial">
<input name="Pixels2W" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels2W.value)) &amp;&amp; (!isNumeric(doc.Pixels2W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
     doc.Pixels2W.focus();
          return false;                            
}" style="font-family:arial; font-size:8pt; "></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Hoist:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Hoist1" type="hidden" value="1">
<select name="Hoist1" tabindex=33 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Hoist2" type="hidden" value="1">
<select name="Hoist2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Communication:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ComType1" type="hidden" value="1">
<select name="ComType1" tabindex=34 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>RF
<option>Cable
<option>N/A</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ComType2" type="hidden" value="1">
<select name="ComType2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>RF
<option>Cable
<option>N/A</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RF Card Type:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RFCardType1" type="hidden" value="1">
<select name="RFCardType1" tabindex=35 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>YDI
<option>WiBox
<option>Other</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RFCardType2" type="hidden" value="1">
<select name="RFCardType2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>YDI
<option>WiBox
<option>Other</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other: </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RFCardTypeOther1" value="" MAXLENGTH=30 tabindex=36 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RFCardTypeOther2" value="" MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial"># LED Faces:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDFaceType1" type="hidden" value="1">
<select name="LEDFaceType1" tabindex=37 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDFaceType2" type="hidden" value="1">
<select name="LEDFaceType2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RDB Lines:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbLines1" type="hidden" value="1">
<select name="RdbLines1" tabindex=38 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4
<option>5
<option>6
<option>7
<option>8
<option>9
<option>10
<option>11
<option>12</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbLines2" type="hidden" value="1">
<select name="RdbLines2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4
<option>5
<option>6
<option>7
<option>8
<option>9
<option>10
<option>11
<option>12</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">OAH:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_OAH1" type="hidden" value="1">
<select name="OAH1" tabindex=39 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>Other
<option>10'
<option>12'
<option>20'
<option>23'8&quot;
<option>25'
<option>35'
<option>50'</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_OAH2" type="hidden" value="1">
<select name="OAH2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Other
<option>10'
<option>12'
<option>20'
<option>23'8&quot;
<option>25'
<option>35'
<option>50'</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="OAHOther1" value="" tabindex=40 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="OAHOther2" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Shared:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Shared1" type="hidden" value="1">
<select name="Shared1" tabindex=41 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Shared2" type="hidden" value="1">
<select name="Shared2"  onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><b><font size="2" face="Arial">LED Restrictions:</font></b></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Operating Requirements:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRestriction1" type="hidden" value="1">
<input type="checkbox" name="LEDRestriction1" tabindex=42 value="No Scrolling" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No Scrolling<br>

<input type="checkbox" name="LEDRestriction1" tabindex=42 value="No Flashing" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No Flashing<br>

<input type="checkbox" name="LEDRestriction1" tabindex=42 value="TimeTemp Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">TimeTemp Required<br>

<input type="checkbox" name="LEDRestriction1" tabindex=42 value="Community Message Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Community Message Required<br>

<input type="checkbox" name="LEDRestriction1" tabindex=42 value="Interval Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Interval Restrictions<br>

<input type="checkbox" name="LEDRestriction1" tabindex=42 value="None" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">None<br>

<input type="checkbox" name="LEDRestriction1" tabindex=42 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRestriction2" type="hidden" value="1">
<input type="checkbox" name="LEDRestriction2" value="No Scrolling" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Scrolling<br>

<input type="checkbox" name="LEDRestriction2" value="No Flashing" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Flashing<br>

<input type="checkbox" name="LEDRestriction2" value="TimeTemp Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">TimeTemp Required<br>

<input type="checkbox" name="LEDRestriction2" value="Community Message Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Community Message Required<br>

<input type="checkbox" name="LEDRestriction2" value="Interval Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Interval Restrictions<br>

<input type="checkbox" name="LEDRestriction2" value="None" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">None<br>

<input type="checkbox" name="LEDRestriction2" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDRestOther1" value="" SIZE=30 MAXLENGTH=500 tabindex=43 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDRestOther2" value="" SIZE=40 MAXLENGTH=500 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Frequency:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDFreq1" value="" Size=3 MAXLENGTH=4 tabindex=44 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.LEDFreq1.value)) &amp;&amp; (!isNumeric(doc.LEDFreq1.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
     doc.LEDFreq1.focus();
          return false;                            
}" style="font-family:arial; font-size:8pt;"></font><font size="2" face="Arial"> times per </font><font size="2" face="Arial">
<input name="%%Surrogate_LEDFreqUnit1" type="hidden" value="1">
<select name="LEDFreqUnit1" tabindex=45 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">
<option selected>
<option>Minute
<option>Hour
<option>Day</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDFreq2" value="" Size=3 MAXLENGTH=4 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.LEDFreq2.value)) &amp;&amp; (!isNumeric(doc.LEDFreq2.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
     doc.LEDFreq2.focus();
          return false;                            
}" style="font-family:arial; font-size:8pt; "></font><font size="2" face="Arial"> times per </font><font size="2" face="Arial">
<input name="%%Surrogate_LEDFreqUnit2" type="hidden" value="1">
<select name="LEDFreqUnit2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Minute
<option>Hour
<option>Day</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Color Restrictions:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ColorRestriction1" type="hidden" value="1">
<input type="checkbox" name="ColorRestriction1" tabindex=46 value="Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Red<br>

<input type="checkbox" name="ColorRestriction1" tabindex=46 value="Green" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Green<br>

<input type="checkbox" name="ColorRestriction1" tabindex=46 value="Amber/Yellow" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Amber/Yellow<br>

<input type="checkbox" name="ColorRestriction1" tabindex=46 value="Full Color" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Full Color<br>

<input type="checkbox" name="ColorRestriction1" tabindex=46 value="1/3 Full Color 2/3 Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">1/3 Full Color 2/3 Red<br>

<input type="checkbox" name="ColorRestriction1" tabindex=46 value="No Color Restriction" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No Color Restriction<br>

<input type="checkbox" name="ColorRestriction1" tabindex=46 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Other</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ColorRestriction2" type="hidden" value="1">
<input type="checkbox" name="ColorRestriction2" value="Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Red<br>

<input type="checkbox" name="ColorRestriction2" value="Green" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Green<br>

<input type="checkbox" name="ColorRestriction2" value="Amber/Yellow" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Amber/Yellow<br>

<input type="checkbox" name="ColorRestriction2" value="Full Color" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Full Color<br>

<input type="checkbox" name="ColorRestriction2" value="1/3 Full Color 2/3 Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">1/3 Full Color 2/3 Red<br>

<input type="checkbox" name="ColorRestriction2" value="No Color Restriction" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Color Restriction<br>

<input type="checkbox" name="ColorRestriction2" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ColorRestrictExpl1" value="" SIZE=30 MAXLENGTH=400 tabindex=47 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ColorRestrictExpl2" value="" SIZE=40 MAXLENGTH=400 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Animation:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDAnimation1" type="hidden" value="1">
<input type="checkbox" name="LEDAnimation1" tabindex=48 value="No Graphics or static images" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No Graphics or static images<br>

<input type="checkbox" name="LEDAnimation1" tabindex=48 value="No animation/moving pictures at all" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No animation/moving pictures at all<br>

<input type="checkbox" name="LEDAnimation1" tabindex=48 value="No Logos" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No Logos<br>

<input type="checkbox" name="LEDAnimation1" tabindex=48 value="No Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No Restrictions<br>

<input type="checkbox" name="LEDAnimation1" tabindex=48 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDAnimation2" type="hidden" value="1">
<input type="checkbox" name="LEDAnimation2" value="No Graphics or static images" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Graphics or static images<br>

<input type="checkbox" name="LEDAnimation2" value="No animation/moving pictures at all" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No animation/moving pictures at all<br>

<input type="checkbox" name="LEDAnimation2" value="No Logos" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Logos<br>

<input type="checkbox" name="LEDAnimation2" value="No Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Restrictions<br>

<input type="checkbox" name="LEDAnimation2" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other</font><font size="2" face="Arial">:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDAnimationOther1" value="" SIZE=35 MAXLENGTH=500 tabindex=49 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDAnimationOther2" value="" SIZE=40 MAXLENGTH=500 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">24-Hour Op Allowed:  </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_HrRestrictionInd1" type="hidden" value="1">
<select name="HrRestrictionInd1" tabindex=50 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_HrRestrictionInd2" type="hidden" value="1">
<select name="HrRestrictionInd2" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="HrRestriction1" value="" SIZE=40 MAXLENGTH=40 tabindex=51 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.PrimarySign.options[doc.PrimarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 1 before updating the sign detail.&quot;);
      doc.PrimarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="HrRestriction2" value="" SIZE=40 MAXLENGTH=40 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.SecondarySign.options[doc.SecondarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 2 before updating the sign detail.&quot;);
      doc.SecondarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#009FC2"><div align="center"><b><font size="2" face="Arial">Wall</font></b></div></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Return Color:</font></div></td><td width="41%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_WallColor" type="hidden" value="1">
<input type="radio" name="WallColor" value="Bronze" checked onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">Bronze
<input type="radio" name="WallColor" value="White" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">White
<input type="radio" name="WallColor" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Type:</font></div></td><td width="59%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_WallType" type="hidden" value="1">
<input type="radio" name="WallType" value="LED" checked onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">LED
<input type="radio" name="WallType" value="Standard Neon" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">Standard Neon
<input type="radio" name="WallType" value="Reverse Channel Lit" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">Reverse Channel Lit
<input type="radio" name="WallType" value="Box Sign" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">Box Sign
<input type="radio" name="WallType" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; ">Other</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Other:</font></div></td><td width="41%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="WallColorOther" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; "></font></td><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Other:</font></div></td><td width="59%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="WallTypeOther" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; "></font></td></tr>
</table>
</DIV><DIV ID="tab22" style="overflow:auto;height=325px;width=100%;">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#0060A0"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#0060A0" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="center"><b><font size="2" color="#FFFFFF" face="Arial">Sign 3</font></b></div></td><td width="1%" bgcolor="#0060A0"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
<font size="2" color="#ff0000" face="Arial">
<input name="focusTOsecondarySign_1" value="" tabindex=52 onfocus="var doc = document.forms[0];
doc.QuaternarySign.focus();" style="border=0; background-color=TRANSPARENT; width=1px; height=1px;"></font></td><td width="50%" bgcolor="#0060A0" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="center"><b><font size="2" color="#FFFFFF" face="Arial">Sign 4</font></b></div></td><td width="1%" bgcolor="#0060A0"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Type:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_TertiarySign" type="hidden" value="1">
<select name="TertiarySign" tabindex=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>None
<option>RBP
<option>LED RBP
<option>Monument RB
<option>Shared Monument RBD
<option>LED Shared Monument RBD
<option>LED Monument RB
<option>Vegas RBP
<option>Vegas LED RBP
<option>Shared RBP
<option>Shared LED RBP
<option>Pylon I.D.
<option>Shared Pylon I.D.
<option>Monument I.D.
<option>Shared Monument I.D.
<option>Wall-Mount LED
<option>Wall-Mount RB
<option>Blade LED
<option>Blade RBD
<option>Blade I.D.
<option>Directional
<option>LL Electronic RBD
<option>American Electronic RBD</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_QuaternarySign" type="hidden" value="1">
<select name="QuaternarySign" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>None
<option>RBP
<option>LED RBP
<option>Monument RB
<option>Shared Monument RBD
<option>LED Shared Monument RBD
<option>LED Monument RB
<option>Vegas RBP
<option>Vegas LED RBP
<option>Shared RBP
<option>Shared LED RBP
<option>Pylon I.D.
<option>Shared Pylon I.D.
<option>Monument I.D.
<option>Shared Monument I.D.
<option>Wall-Mount LED
<option>Wall-Mount RB
<option>Blade LED
<option>Blade RBD
<option>Blade I.D.
<option>Directional
<option>LL Electronic RBD
<option>American Electronic RBD</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Street Facing:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="TertiarySignStreet" value="" tabindex=2 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="QuaternarySignStreet" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Direction Facing:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_TertiaryStreetDir" type="hidden" value="1">
<select name="TertiaryStreetDir" tabindex=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>N/S
<option>E/W</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_QuaternaryStreetDir" type="hidden" value="1">
<select name="QuaternaryStreetDir" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>N/S
<option>E/W</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">ID Cab Size:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDCabSize3" type="hidden" value="1">
<select name="IDCabSize3" tabindex=4 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>2' 7&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3' 7&quot; x 12' 3&quot;
<option>5'x16'
<option>4'x14'
<option>8'x25'
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDCabSize4" type="hidden" value="1">
<select name="IDCabSize4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>2' 7&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3' 7&quot; x 12' 3&quot;
<option>5'x16'
<option>4'x14'
<option>8'x25'
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDCabSizeOther3" value="" MAXLENGTH=60 tabindex=5 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDCabSizeOther4" value="" MAXLENGTH=60 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">ID Verbiage:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDVerbage3" type="hidden" value="1">
<input type="checkbox" name="IDVerbage3" tabindex=6 value="Mortar &amp; Pestle" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">Mortar &amp; Pestle<br>

<input type="checkbox" name="IDVerbage3" tabindex=6 value="Walgreens" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">Walgreens<br>

<input type="checkbox" name="IDVerbage3" tabindex=6 value="W Logo" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">W Logo<br>

<input type="checkbox" name="IDVerbage3" tabindex=6 value="Drive-Thru Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">Drive-Thru Pharmacy<br>

<input type="checkbox" name="IDVerbage3" tabindex=6 value="24-Hours" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">24-Hours<br>

<input type="checkbox" name="IDVerbage3" tabindex=6 value="Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">Pharmacy<br>

<input type="checkbox" name="IDVerbage3" tabindex=6 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">Other</font><font size="2" face="Arial"> </font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_IDVerbage4" type="hidden" value="1">
<input type="checkbox" name="IDVerbage4" value="Mortar &amp; Pestle" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">Mortar &amp; Pestle<br>

<input type="checkbox" name="IDVerbage4" value="Walgreens" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">Walgreens<br>

<input type="checkbox" name="IDVerbage4" value="W Logo" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">W Logo<br>

<input type="checkbox" name="IDVerbage4" value="Drive-Thru Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">Drive-Thru Pharmacy<br>

<input type="checkbox" name="IDVerbage4" value="24-Hours" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">24-Hours<br>

<input type="checkbox" name="IDVerbage4" value="Pharmacy" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">Pharmacy<br>

<input type="checkbox" name="IDVerbage4" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">Other</font><font size="2" face="Arial"> </font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other</font><font size="2" face="Arial">:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDVerbageOther3" value="" tabindex=7 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="IDVerbageOther4" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RDB Size:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabSize3" type="hidden" value="1">
<select name="RdbCabSize3" tabindex=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>2'8&quot; x 5'9&quot;
<option>2'8&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 9'2&quot;
<option>4'3&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3'8&quot; x 10'11&quot;
<option>5' x 15'4&quot;
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabSize4" type="hidden" value="1">
<select name="RdbCabSize4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>2'8&quot; x 5'9&quot;
<option>2'8&quot; x 8'8&quot;
<option>2'8&quot; x 9'2&quot;
<option>2'8&quot; x 10'1&quot;
<option>3'7&quot; x 9'2&quot;
<option>4'3&quot; x 10'1&quot;
<option>3'7&quot; x 10'1&quot;
<option>3'8&quot; x 10'11&quot;
<option>5' x 15'4&quot;
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other (Height x Width):</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbCabSize3HFt" value="" SIZE=3 MAXLENGTH=3 tabindex=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize3HFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize3HFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize3HFt.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize3HIn" value="" SIZE=2 MAXLENGTH=2 tabindex=10 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize3HIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize3HIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize3HIn.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">&quot; x </font><font size="2" face="Arial">
<input name="RdbCabSize3WFt" value="" SIZE=3 MAXLENGTH=3 tabindex=11 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize3WFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize3WFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize3WFt.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize3WIn" value="" SIZE=2 MAXLENGTH=2 tabindex=12 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize3WIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize3WIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize3WIn.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">&quot;</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbCabSize4HFt" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize4HFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize4HFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize4HFt.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize4HIn" value="" SIZE=2 MAXLENGTH=2 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize4HIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize4HIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize4HIn.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">&quot; x</font><font size="1" face="Arial"> </font><font size="2" face="Arial">
<input name="RdbCabSize4WFt" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize4WFt.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize4WFt.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize4WFt.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">' </font><font size="2" face="Arial">
<input name="RdbCabSize4WIn" value="" SIZE=2 MAXLENGTH=2 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if (( !isBlank(doc.RdbCabSize4WIn.value) )  &amp;&amp;  (!isNumeric(doc.RdbCabSize4WIn.value)) )
      {
            alert( 'Field must be numeric.  Please enter a valid number.');
                       doc.RdbCabSize4WIn.focus();
                            return false;                            
      }"></font><font size="2" face="Arial">&quot;</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RDB Type:</font></div></td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabType3" type="hidden" value="1">
<select name="RdbCabType3" tabindex=13 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}">
<option selected>
<option>Manual
<option>LED
<option>None</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbCabType4" type="hidden" value="1">
<select name="RdbCabType4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}">
<option selected>
<option>Manual
<option>LED
<option>None</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Software: </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Software3" type="hidden" value="1">
<select name="Software3" tabindex=14 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>Complay 3.5
<option>Complay 2000
<option>Venus 1500
<option>Complay 3.5.44G
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Software4" type="hidden" value="1">
<select name="Software4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>Complay 3.5
<option>Complay 2000
<option>Venus 1500
<option>Complay 3.5.44G
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="SoftwareOther3" value="" MAXLENGTH=30 tabindex=15 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="SoftwareOther4" value="" MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">CPU:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_CPU3" type="hidden" value="1">
<select name="CPU3" tabindex=16 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>HX+
<option>HX1
<option>M2
<option>MDC
<option>Z180
<option>Other</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_CPU4" type="hidden" value="1">
<select name="CPU4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>HX+
<option>HX1
<option>M2
<option>MDC
<option>Z180
<option>Other</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="CPUOther3" value="" MAXLENGTH=30 tabindex=17 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="CPUOther4" value="" MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Baud Type:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_BaudType3" type="hidden" value="1">
<select name="BaudType3" tabindex=18 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>115200
<option>19200
<option>Other</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_BaudType4" type="hidden" value="1">
<select name="BaudType4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>115200
<option>19200
<option>Other</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font><font size="2" face="Arial"> </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="BaudTypeOther3" value="" MAXLENGTH=30 tabindex=19 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="BaudTypeOther4" value="" MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED RDB Color:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbColor3" type="hidden" value="1">
<select name="RdbColor3" tabindex=20 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>1/3 Full Color 2/3 Red
<option>Red
<option>Full Color
<option>Full as White
<option>Amber
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbColor4" type="hidden" value="1">
<select name="RdbColor4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=100%">
<option selected>
<option>1/3 Full Color 2/3 Red
<option>Red
<option>Full Color
<option>Full as White
<option>Amber
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbColorOther3" value="" MAXLENGTH=35 tabindex=21 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RdbColorOther4" value="" MAXLENGTH=35 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Graphic Type:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_GraphicType3" type="hidden" value="1">
<select name="GraphicType3" tabindex=22 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Full
<option>Partial</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_GraphicType4" type="hidden" value="1">
<select name="GraphicType4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>Full
<option>Partial</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Full Color Resolution:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDColorRes3" type="hidden" value="1">
<select name="LEDColorRes3" tabindex=23 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDColorRes4" type="hidden" value="1">
<select name="LEDColorRes4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font><font size="2" face="Arial"> </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDColorResOther3" value="" MAXLENGTH=16 tabindex=24 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDColorResOther4" value="" MAXLENGTH=16 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Monochrome Resolution:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRes3" type="hidden" value="1">
<select name="LEDRes3" tabindex=25 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRes4" type="hidden" value="1">
<select name="LEDRes4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>1.375
<option>0.71
<option>0.51
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other: </font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDResOther3" value="" MAXLENGTH=16 tabindex=26 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDResOther4" value="" MAXLENGTH=16 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Full Color Pixels:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_PixelsColor3" type="hidden" value="1">
<select name="PixelsColor3" tabindex=27 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_PixelsColor4" type="hidden" value="1">
<select name="PixelsColor4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="PixelsColor3H" value="" SIZE=3 MAXLENGTH=3 tabindex=28 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor3H.value)) &amp;&amp; (!isNumeric(doc.PixelsColor3H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor3H.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font><font size="1" face="Arial"> </font><font size="2" face="Arial">x</font><font size="1" face="Arial"> </font><font size="2" face="Arial">
<input name="PixelsColor3W" value="" SIZE=3 MAXLENGTH=3 tabindex=29 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor3W.value)) &amp;&amp; (!isNumeric(doc.PixelsColor3W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor3W.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="PixelsColor4H" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor4H.value)) &amp;&amp; (!isNumeric(doc.PixelsColor4H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor4H.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font><font size="1" face="Arial"> </font><font size="2" face="Arial">x</font><font size="1" face="Arial"> </font><font size="2" face="Arial">
<input name="PixelsColor4W" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.PixelsColor4W.value)) &amp;&amp; (!isNumeric(doc.PixelsColor4W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.PixelsColor4W.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">LED Monochrome Pixels:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Pixels3" type="hidden" value="1">
<select name="Pixels3" tabindex=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Pixels4" type="hidden" value="1">
<select name="Pixels4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>24 x 80
<option>24 x 72
<option>16 x 80
<option>16 x 72
<option>32 x 48
<option>32 x 80
<option>32 x 96
<option>32 x 128
<option>48 x 48
<option>48 x 64
<option>32 x 144
<option>48 x 160
<option>48 x 176
<option>64 x 224
<option>80 x 256
<option>Other</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font><font size="2" face="Arial"> </font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="Pixels3H" value="" SIZE=3 MAXLENGTH=3 tabindex=31 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels3H.value)) &amp;&amp; (!isNumeric(doc.Pixels3H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.Pixels3H.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font><font size="2" face="Arial"> x </font><font size="2" face="Arial">
<input name="Pixels3W" value="" SIZE=3 MAXLENGTH=3 tabindex=32 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels3W.value)) &amp;&amp; (!isNumeric(doc.Pixels3W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.Pixels3W.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="Pixels4H" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels4H.value)) &amp;&amp; (!isNumeric(doc.Pixels4H.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.Pixels4H.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font><font size="2" face="Arial"> x </font><font size="2" face="Arial">
<input name="Pixels4W" value="" SIZE=3 MAXLENGTH=3 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.Pixels4W.value)) &amp;&amp; (!isNumeric(doc.Pixels4W.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
      doc.Pixels4W.focus();
      return false;                            
}" style="font-family:arial; font-size:8pt; width=45%"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Hoist:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Hoist3" type="hidden" value="1">
<select name="Hoist3" tabindex=33 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Hoist4" type="hidden" value="1">
<select name="Hoist4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Communication:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ComType3" type="hidden" value="1">
<select name="ComType3" tabindex=34 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>RF
<option>Cable
<option>N/A</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ComType4" type="hidden" value="1">
<select name="ComType4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>RF
<option>Cable
<option>N/A</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RF Card Type:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RFCardType3" type="hidden" value="1">
<select name="RFCardType3" tabindex=35 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>YDI
<option>WiBox
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RFCardType4" type="hidden" value="1">
<select name="RFCardType4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt;  ">
<option selected>
<option>YDI
<option>WiBox
<option>Other</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other: </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RFCardTypeOther3" value="" MAXLENGTH=30 tabindex=36 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="RFCardTypeOther4" value="" MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial"># LED Faces:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDFaceType3" type="hidden" value="1">
<select name="LEDFaceType3" tabindex=37 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDFaceType4" type="hidden" value="1">
<select name="LEDFaceType4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">RDB Lines:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbLines3" type="hidden" value="1">
<select name="RdbLines3" tabindex=38 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4
<option>5
<option>6
<option>7
<option>8
<option>9
<option>10
<option>11
<option>12</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_RdbLines4" type="hidden" value="1">
<select name="RdbLines4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>0
<option>1
<option>2
<option>3
<option>4
<option>5
<option>6
<option>7
<option>8
<option>9
<option>10
<option>11
<option>12</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">OAH:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_OAH3" type="hidden" value="1">
<select name="OAH3" tabindex=39 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt;">
<option selected>
<option>Other
<option>10'
<option>12'
<option>20'
<option>23'8&quot;
<option>25'
<option>35'
<option>50'</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_OAH4" type="hidden" value="1">
<select name="OAH4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Other
<option>10'
<option>12'
<option>20'
<option>23'8&quot;
<option>25'
<option>35'
<option>50'</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="OAHOther3" value="" tabindex=40 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))      {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="OAHOther4" value="" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; )  || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; )) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Shared:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Shared3" type="hidden" value="1">
<select name="Shared3" tabindex=41 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Shared4" type="hidden" value="1">
<select name="Shared4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; )  || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><b><font size="2" face="Arial">LED Restrictions:</font></b></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Operating Requirements:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRestriction3" type="hidden" value="1">
<input type="checkbox" name="LEDRestriction3" tabindex=42 value="No Scrolling" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Scrolling<br>

<input type="checkbox" name="LEDRestriction3" tabindex=42 value="No Flashing" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Flashing<br>

<input type="checkbox" name="LEDRestriction3" tabindex=42 value="TimeTemp Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">TimeTemp Required<br>

<input type="checkbox" name="LEDRestriction3" tabindex=42 value="Community Message Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Community Message Required<br>

<input type="checkbox" name="LEDRestriction3" tabindex=42 value="Interval Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Interval Restrictions<br>

<input type="checkbox" name="LEDRestriction3" tabindex=42 value="None" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">None<br>

<input type="checkbox" name="LEDRestriction3" tabindex=42 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDRestriction4" type="hidden" value="1">
<input type="checkbox" name="LEDRestriction4" value="No Scrolling" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Scrolling<br>

<input type="checkbox" name="LEDRestriction4" value="No Flashing" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Flashing<br>

<input type="checkbox" name="LEDRestriction4" value="TimeTemp Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">TimeTemp Required<br>

<input type="checkbox" name="LEDRestriction4" value="Community Message Required" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Community Message Required<br>

<input type="checkbox" name="LEDRestriction4" value="Interval Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Interval Restrictions<br>

<input type="checkbox" name="LEDRestriction4" value="None" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">None<br>

<input type="checkbox" name="LEDRestriction4" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDRestOther3" value="" SIZE=30 MAXLENGTH=500 tabindex=43 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDRestOther4" value="" SIZE=30 MAXLENGTH=500 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Frequency:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDFreq3" value="" Size=3 MAXLENGTH=4 tabindex=44 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.LEDFreq3.value)) &amp;&amp; (!isNumeric(doc.LEDFreq3.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
     doc.LEDFreq3.focus();
          return false;                            
}" style="font-family:arial; font-size:8pt; "></font><font size="2" face="Arial"> times per </font><font size="2" face="Arial">
<input name="%%Surrogate_LEDFreqUnit3" type="hidden" value="1">
<select name="LEDFreqUnit3" tabindex=45 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Minute
<option>Hour
<option>Day</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDFreq4" value="" Size=3 MAXLENGTH=4 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" onblur="//This is used to ensure that data entered is in numeric format.
var doc = document.forms[0];
if ((!isBlank(doc.LEDFreq4.value)) &amp;&amp; (!isNumeric(doc.LEDFreq4.value))) {
      alert( 'Field must be numeric.  Please enter a valid number.');
     doc.LEDFreq4.focus();
          return false;                            
}" style="font-family:arial; font-size:8pt; "></font><font size="2" face="Arial"> times per </font><font size="2" face="Arial">
<input name="%%Surrogate_LEDFreqUnit4" type="hidden" value="1">
<select name="LEDFreqUnit4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Minute
<option>Hour
<option>Day</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Color Restrictions:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ColorRestriction3" type="hidden" value="1">
<input type="checkbox" name="ColorRestriction3" tabindex=46 value="Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Red<br>

<input type="checkbox" name="ColorRestriction3" tabindex=46 value="Green" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Green<br>

<input type="checkbox" name="ColorRestriction3" tabindex=46 value="Amber/Yellow" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Amber/Yellow<br>

<input type="checkbox" name="ColorRestriction3" tabindex=46 value="Full Color" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Full Color<br>

<input type="checkbox" name="ColorRestriction3" tabindex=46 value="1/3 Full Color 2/3 Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">1/3 Full Color 2/3 Red<br>

<input type="checkbox" name="ColorRestriction3" tabindex=46 value="No Color Restriction" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">No Color Restriction<br>

<input type="checkbox" name="ColorRestriction3" tabindex=46 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt;">Other</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_ColorRestriction4" type="hidden" value="1">
<input type="checkbox" name="ColorRestriction4" value="Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Red<br>

<input type="checkbox" name="ColorRestriction4" value="Green" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Green<br>

<input type="checkbox" name="ColorRestriction4" value="Amber/Yellow" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Amber/Yellow<br>

<input type="checkbox" name="ColorRestriction4" value="Full Color" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Full Color<br>

<input type="checkbox" name="ColorRestriction4" value="1/3 Full Color 2/3 Red" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">1/3 Full Color 2/3 Red<br>

<input type="checkbox" name="ColorRestriction4" value="No Color Restriction" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Color Restriction<br>

<input type="checkbox" name="ColorRestriction4" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ColorRestrictExpl3" value="" SIZE=30 MAXLENGTH=400 tabindex=47 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ColorRestrictExpl4" value="" SIZE=30 MAXLENGTH=400 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">Animation:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDAnimation3" type="hidden" value="1">
<input type="checkbox" name="LEDAnimation3" tabindex=48 value="No Graphics or static images" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Graphics or static images<br>

<input type="checkbox" name="LEDAnimation3" tabindex=48 value="No animation/moving pictures at all" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No animation/moving pictures at all<br>

<input type="checkbox" name="LEDAnimation3" tabindex=48 value="No Logos" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Logos<br>

<input type="checkbox" name="LEDAnimation3" tabindex=48 value="No Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Restrictions<br>

<input type="checkbox" name="LEDAnimation3" tabindex=48 value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_LEDAnimation4" type="hidden" value="1">
<input type="checkbox" name="LEDAnimation4" value="No Graphics or static images" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Graphics or static images<br>

<input type="checkbox" name="LEDAnimation4" value="No animation/moving pictures at all" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No animation/moving pictures at all<br>

<input type="checkbox" name="LEDAnimation4" value="No Logos" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Logos<br>

<input type="checkbox" name="LEDAnimation4" value="No Restrictions" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">No Restrictions<br>

<input type="checkbox" name="LEDAnimation4" value="Other" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">Other</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other</font><font size="2" face="Arial">:</font></div></td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDAnimationOther3" value="" SIZE=30 MAXLENGTH=500 tabindex=49 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="LEDAnimationOther4" value="" SIZE=30 MAXLENGTH=500 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="2" face="Arial">24-Hour Op Allowed:  </font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_HrRestrictionInd3" type="hidden" value="1">
<select name="HrRestrictionInd3" tabindex=50 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_HrRestrictionInd4" type="hidden" value="1">
<select name="HrRestrictionInd4" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; ">
<option selected>
<option>Yes
<option>No
<option>N/A</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#C2EFFF" valign="middle"><img src="/icons/ecblank.gif" border="0" height="1" width="120" alt=""><br>
<div align="right"><font size="1" face="Arial">Other:</font></div></td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="HrRestriction3" value="" SIZE=30 MAXLENGTH=30 tabindex=51 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.TertiarySign.options[doc.TertiarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 3 before updating the sign detail.&quot;);
      doc.TertiarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td><td width="50%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="HrRestriction4" value="" SIZE=30 MAXLENGTH=30 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) ) {
      alert(&quot;You are not authorized to change this information.&quot;);
      doc.Cursor.focus();
};
if(doc.QuaternarySign.options[doc.QuaternarySign.selectedIndex].text == &quot;&quot;) {
      alert(&quot;You must select a Sign Type for Sign 4 before updating the sign detail.&quot;);
      doc.QuaternarySign.focus();
}

proStatWarn();" style="font-family:arial; font-size:8pt; width=175"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="12" alt=""><br>
</td></tr>
</table>
</DIV><Br></DIV><DIV ID=tab3>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="33%" bgcolor="#FF9F71"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="33%" bgcolor="#FF9F71" valign="middle"><div align="center"><b><font size="2" face="Arial">Sign Dates Detail</font></b></div></td><td width="33%" bgcolor="#FF9F71"><div align="right">
<input type="button" onclick="printDiv();" onmouseover="var doc = document.forms[0];
this.style.color='blue';" onmouseout="this.style.color='white';" value="Print" style="color=white; font-size=10pt; font-weight=BOLD; background-color=transparent;"></div></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<div align="center"><font size="2" face="Arial">Wall</font></div></td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<div align="center"><font size="2" face="Arial">Ground 1</font></div></td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<div align="center"><font size="2" face="Arial">Ground 2</font></div></td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<div align="center"><font size="2" face="Arial">Ground 3</font></div></td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">Ground 4</font></td><td width="1%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Permit Applied:</font></div></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="WallPermitAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="SignPermitAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS2PermitAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS3PermitAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS4PermitAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Variance Applied:</font></div></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="WPVarAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="G1VarAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="G2VarAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="G3VarAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="G4VarAppliedDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Permit Received:</font></div></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="WallPermitRecdDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
// 4/12/4 sandeep, Disallow function if Save is going on.
if (doc.SaveMode.value == &quot;Y&quot;) {
  alert(&quot;Update is in progress. \n\n Please wait....&quot;);
  return false;
   }
" onblur="//This is used to ensure that date entered is in correct format
var doc = document.forms[0];
if (( !isBlank(doc.WallPermitRecdDt.value) )  &amp;&amp;  (!isValidDate(doc.WallPermitRecdDt.value)) )
                        {
                              alert( 'All Dates must be in one of the following formats:\n' +
                              '1. MMDD\n' +
                              '2. MMDDYYYY\n' +
                              '3. MM/DD\n' +
                              '4. MM/DD/YYYY\n\n' +
                              'Please enter a valid date.');
                       doc.WallPermitRecdDt.focus();
                            return false;                            
                        }       
doc.WallPermitRecdDt.value=formatDate(doc.WallPermitRecdDt.value);" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="SignPermitRecdDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onblur="//This is used to ensure that date entered is in correct format
var doc = document.forms[0];
if (( !isBlank(doc.SignPermitRecdDt.value) )  &amp;&amp;  (!isValidDate(doc.SignPermitRecdDt.value)) )
                        {
                              alert( 'All Dates must be in one of the following formats:\n' +
                              '1. MMDD\n' +
                              '2. MMDDYYYY\n' +
                              '3. MM/DD\n' +
                              '4. MM/DD/YYYY\n\n' +
                              'Please enter a valid date.');
                       doc.SignPermitRecdDt.focus();
                            return false;                            
                        }       
doc.SignPermitRecdDt.value=formatDate(doc.SignPermitRecdDt.value)" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS2PermitRecdDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS3PermitRecdDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS4PermitRecdDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Order:</font></div></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="WallOrderDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS1OrderDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS2OrderDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS3OrderDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS4OrderDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Ship:</font></div></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="WallShipDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS1ShipDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS2ShipDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS3ShipDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS4ShipDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Install:</font></div></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="WallSignInstallDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_SgnWLInd" type="hidden" value="1">
<select name="SgnWLInd" SIZE=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;">
<option selected>
<option>A
<option>E
<option>N
<option>O</select>
</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="SignInstallDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_SgnInInd" type="hidden" value="1">
<select name="SgnInInd" SIZE=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;">
<option selected>
<option>A
<option>E
<option>N
<option>O</select>
</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="Sign2InstallDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Sgn2InInd" type="hidden" value="1">
<select name="Sgn2InInd" SIZE=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;">
<option selected>
<option>A
<option>E
<option>N
<option>O</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="Sign3InstallDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Sgn3InInd" type="hidden" value="1">
<select name="Sgn3InInd" SIZE=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;">
<option selected>
<option>A
<option>E
<option>N
<option>O</select>
</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="Sign4InstallDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_Sgn4InInd" type="hidden" value="1">
<select name="Sgn4InInd" SIZE=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}

proStatWarn();
" style="font-family:arial; font-size:8pt;">
<option selected>
<option>A
<option>E
<option>N
<option>O</select>
</font></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Original Install:</font></div></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial"></font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6>                       </td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">LED:</font></div></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="LEDShipMfgDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.SignTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" color="#FF0000" face="Arial">Mfg</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="LEDShipMfgDt2" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.SignTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" color="#FF0000" face="Arial">Mfg</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="LEDShipInstDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.SignTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" color="#FF0000" face="Arial">Inst</font></td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="LEDShipInstDt2" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.SignTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" color="#FF0000" face="Arial">Inst</font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Bolt Cage Ship:</font></div></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS1BoltCageDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS2BoltCageDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS3BoltCageDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS4BoltCageDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Engineered Foundation Drawings Sent:</font></div></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS1FoundationDrawingsDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS2FoundationDrawingsDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS3FoundationDrawingsDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS4FoundationDrawingsDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="24%" colspan="10"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><font size="2" face="Arial">Foundation Install:</font></div></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS1FoundationInstallDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_GS1FoundationInd" type="hidden" value="1">
<select name="GS1FoundationInd" SIZE=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;">
<option selected>
<option>A
<option>E
<option>O</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
<font size="2" face="Arial">
<input name="GS2FoundationInstallDt" value="" SIZE=9 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;" title="Date"></font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
<font size="2" face="Arial">
<input name="%%Surrogate_GS2FoundationInd" type="hidden" value="1">
<select name="GS2FoundationInd" SIZE=1 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="font-family:arial; font-size:8pt;">
<option selected>
<option>A
<option>E
<option>O</select>
</font></td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>

<tr valign="top"><td width="100%" bgcolor="#FFEFCE"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="58" alt=""><br>
</td><td width="1%"><img src="/icons/ecblank.gif" border="0" height="1" width="43" alt=""><br>
</td></tr>
</table>
</DIV>
<DIV ID=tab4>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="39%" bgcolor="#9F9FE0"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="34%" bgcolor="#9F9FE0" colspan="2" valign="middle"><div align="center"><b><font size="2" face="Arial">Bill Of Material Detail</font></b></div></td><td width="27%" bgcolor="#9F9FE0"><div align="right">
<input type="button" onclick="printDiv();" onmouseover="var doc = document.forms[0];
this.style.color='blue';" onmouseout="this.style.color='white';" value="Print" style="color=white; font-size=10pt; font-weight=BOLD; background-color=transparent;"></div></td></tr>

<tr valign="top"><td width="39%" bgcolor="#9F9FE0"><div align="center"><img src="/facility/vndfdloc.nsf/f97f5cecb01d87a88625718d006d87f0/$Body/19.3692?OpenElement&amp;FieldElemFormat=gif" width="146" height="25" alt=""></div></td><td width="20%" bgcolor="#9F9FE0"><b><font size="4" color="#FF0000" face="Arial">National Corporation</font></b><b><font size="2" face="Arial"> </font></b></td><td width="14%" bgcolor="#9F9FE0"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="27%" bgcolor="#9F9FE0"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="14%" bgcolor="#E8E0FF"><font size="2">P.O Number:</font></td><td width="37%" bgcolor="#FFFFFF"><b><font size="2" color="#800000" face="Arial"></font></b></td><td width="15%" bgcolor="#E8E0FF"><font size="2">P.O Status:</font></td><td width="34%" bgcolor="#FFFFFF"><b><font size="2" color="#800000" face="Arial"></font></b></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="19%"><a onclick="var doc = document.forms[0];

// 4/12/4 sandeep, Disallow function if Save is going on.
if (doc.SaveMode.value == &quot;Y&quot;) {
  alert(&quot;Update is in progress. \n\n Please wait....&quot;);
  return false;
   }


if (doc.POStatus.value == &quot;Approved&quot; )
{
      alert(&quot;You are not allowed to edit Sign Order for an approved Purchase Order.&quot;);
}
else
{
      OpenSignOrderWindow() ;
}

return false;" href=""><b><font size="2" color="#0000FF" face="Arial">Edit Sign Order</font></b></a></td><td width="25%"><a onclick="//Button for Sign Mfg for creation of new PO with custom signs
var doc = document.forms[0];

// 4/12/4 sandeep, Disallow function if Save is going on.
if (doc.SaveMode.value == &quot;Y&quot;) {
  alert(&quot;Update is in progress. \n\n Please wait....&quot;);
  return false;
   }


if ((doc.SO1Qty.value == &quot;&quot;) &amp;&amp; (doc.SO2Qty.value == &quot;&quot;) &amp;&amp; (doc.SO3Qty.value == &quot;&quot;))
{ alert(&quot;Please create a Sign Order before Purchase Order.&quot;);
}
else
{
if ((doc.SO1SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO2SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO3SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO4SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO5SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO6SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO7SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO8SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO9SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO10SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO11SCost.value != &quot;Quote&quot;)  &amp;&amp; (doc.SO12SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO13SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO14SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO15SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO16SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO17SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO18SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO19SCost.value != &quot;Quote&quot;) &amp;&amp; (doc.SO20SCost.value != &quot;Quote&quot;))
            { alert(&quot;Please use Submit Purchase Order for standard Purchase Order.&quot;);}
else
{
      if ((doc.WallPermitRecdDt.value == &quot;&quot;) &amp;&amp; (doc.SignPermitRecdDt.value == &quot;&quot;))
            {alert(&quot;Wall or Ground Sign 1 Permit Received Date is blank. You are not allowed to create a Purchase Order.&quot;); return false; }
      else
      {OpenNewPOWindow()}}
}
return false;" href=""><b><font size="2" color="#0000FF" face="Arial">Edit Purchase Order</font></b></a></td><td width="25%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="32%"><a onclick="//Button for submitting a standard PO
var doc = document.forms[0];

// 4/12/4 sandeep, Disallow function if Save is going on.
if (doc.SaveMode.value == &quot;Y&quot;) {
  alert(&quot;Update is in progress. \n\n Please wait....&quot;);
  return false;
   }


if (doc.SaveMode.value == &quot;Y&quot;)
{alert(&quot;Please be patient, Purchase Order is being processed !!!.&quot;) }  
else {
var s = doc.TotSOCost.value ;
var t = s.substr( 1, s.length);  
var PODocID;
doc.PODocID.value = trimString(doc.PODocID.value);
PODocID = doc.PODocID.value;
var ProjNo;
doc.ProjectNumber.value = trimString(doc.ProjectNumber.value);
ProjNo = doc.ProjectNumber.value;

//-----06/27/02 Sandeep Code to ensure if Project Number is blank show message &amp; stop
if (isBlank(ProjNo))
{ alert(&quot;Please make sure Project No. in Location Info tab is not blank.&quot;);
      return false;};
//---------06/27/02-----
      
//if (doc.SO1Qty.value == &quot;&quot;)
//3/12/02 Sandeep code to ensure if 1st 3 rows in Sign Order are blank then system will submit but if
//if it is more then 3 then show message
if ((doc.SO1Qty.value == &quot;&quot;) &amp;&amp; (doc.SO2Qty.value == &quot;&quot;) &amp;&amp; (doc.SO3Qty.value == &quot;&quot;))
{ alert(&quot;Please create a Sign Order before submitting Purchase Order.&quot;);
}
else
{
      if (PODocID == &quot;&quot; )
            if ((doc.SO1SCost.value == &quot;Quote&quot;) || (doc.SO2SCost.value == &quot;Quote&quot;) || (doc.SO3SCost.value == &quot;Quote&quot;) || (doc.SO4SCost.value == &quot;Quote&quot;) || (doc.SO5SCost.value == &quot;Quote&quot;) || (doc.SO6SCost.value == &quot;Quote&quot;) || (doc.SO7SCost.value == &quot;Quote&quot;) || (doc.SO8SCost.value == &quot;Quote&quot;) || (doc.SO9SCost.value == &quot;Quote&quot;) || (doc.SO10SCost.value == &quot;Quote&quot;) || (doc.SO11SCost.value == &quot;Quote&quot;)  || (doc.SO12SCost.value == &quot;Quote&quot;) || (doc.SO13SCost.value == &quot;Quote&quot;) || (doc.SO14SCost.value == &quot;Quote&quot;) || (doc.SO15SCost.value == &quot;Quote&quot;) || (doc.SO16SCost.value == &quot;Quote&quot;) || (doc.SO17SCost.value == &quot;Quote&quot;) || (doc.SO18SCost.value == &quot;Quote&quot;) || (doc.SO19SCost.value == &quot;Quote&quot;) || (doc.SO20SCost.value == &quot;Quote&quot;))
            { alert(&quot;Please click Edit Purchase Order for custom signs.&quot;);}
            else            
            {
                  if ((doc.WallPermitRecdDt.value == &quot;&quot; ) &amp;&amp; (doc.SignPermitRecdDt.value == &quot;&quot; ))
                  { alert(&quot;Wall Permit Receive Date is blank. You are not allowed to create a Purchase Order.&quot;); return false;}
                  else
                        {if (confirm(&quot;Do you really want to Submit this Purchase Order.?&quot;))
                        {    
                              {if (((ProjNo.substr(0,3) == &quot;149&quot;) &amp;&amp; (t &gt; 5000.00 ) )   || ((ProjNo.substr(0,3) == &quot;125&quot;) &amp;&amp; (t &gt; 10000.00 ) )  ||  (ProjNo.substr(0,3) == &quot;112&quot;)  ||  (ProjNo.substr(0,3) == &quot;111&quot;)   ||  (ProjNo.substr(0,3) == &quot;119&quot;))   alert(&quot;Please check for approval, prior to proceeding.&quot;) }                            
                        doc.SaveMode.value = &quot;Y&quot;;doc.submitPO.click();}; }
            }
      else
            {alert(&quot;This Location already has a Purchase Order &quot; + doc.PONumber.value + &quot;.&quot;); }}
}
return false;" href=""><b><font size="2" color="#0000FF" face="Arial">Submit Purchase Order</font></b></a></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#9F9FE0" colspan="7"><div align="center"><b><font size="2" face="Arial">Sign Order Detail</font></b></div></td></tr>

<tr valign="top"><td width="5%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial">Qty</font></div></td><td width="5%" bgcolor="#E8E0FF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#E8E0FF"><div align="center"><font size="2" face="Arial">Standard/Custom Signs</font></div></td><td width="11%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial">Sign Rate</font></div></td><td width="11%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial">Sign Cost</font></div></td><td width="13%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial">Install Rate</font></div></td><td width="13%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial">Install Cost</font></div></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#FFFFFF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#FFFFFF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#EFEFEF"><font size="2" face="Arial"></font><font size="2" face="Arial"></font></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#EFEFEF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="5%" bgcolor="#E8E0FF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="5%" bgcolor="#E8E0FF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="42%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial">Total:</font></div></td><td width="11%" bgcolor="#E8E0FF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="11%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial"></font></div></td><td width="13%" bgcolor="#E8E0FF"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td width="13%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial"></font></div></td></tr>
</table>
<font size="2" color="#FF00FF" face="Arial">  </font><Br><a onclick="// &quot;This button will submit the purchase order only if there are no custom signs to be ordered.&quot;;
// &quot;Show this button when Sign Cost does not display Waiting for Quote.&quot;;
alert('This will submit a PO by automatically creating &amp; saving a PO.')
return false;" href=""></a>
<table border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="156"><a onclick="var doc = document.forms[0];      

// 4/12/4 sandeep, Disallow function if Save is going on.
if (doc.SaveMode.value == &quot;Y&quot;) {
  alert(&quot;Update is in progress. \n\n Please wait....&quot;);
  return false;
   }


if (doc.PODocID.value == &quot;&quot;)
{ alert(&quot;Please create a Purchase Order before Change Order.&quot;);
}
else
{
      if (doc.POStatus.value == &quot;Approved&quot;)
            { OpenNewCOWindow();  }
      else            
            {alert(&quot;The Purchase Order for this Location is not Approved, So you are not allowed to create a Change Order.&quot;);}
}
return false;" href=""><b><font size="2" color="#0000FF" face="Arial">New Change Order</font></b></a></td></tr>
</table>
<style type="text/css"><!-- H2 {color : #FFFFFF;font : normal 10pt Verdana, Arial, Helvetica, sans-serif;}--></style>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#9F9FE0" colspan="6"><div align="center"><b><font size="2" face="Arial">Change Order Detail</font></b></div></td></tr>
</table>
<h2>No documents found</h2><br>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="66%" bgcolor="#E8E0FF" colspan="5"><div align="right"><font size="2" face="Arial">Total Sign Order Cost:</font></div></td><td width="34%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial"></font></div></td></tr>

<tr valign="top"><td width="66%" bgcolor="#E8E0FF" colspan="5"><div align="right"><font size="2" face="Arial">Total of Approved Change Orders:</font></div></td><td width="34%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial"></font></div></td></tr>

<tr valign="top"><td width="66%" bgcolor="#E8E0FF" colspan="5"><div align="right"><font size="2" face="Arial">Total Sign Cost for this Location:</font></div></td><td width="34%" bgcolor="#E8E0FF"><div align="right"><font size="2" face="Arial"></font></div></td></tr>
</table>
<Br><a onclick="// &quot;This button will submit the purchase order only if there are no custom signs to be ordered.&quot;;
// &quot;Show this button when Sign Cost does not display Waiting for Quote.&quot;;
alert('This will submit a PO by automatically creating &amp; saving a PO.')
return false;" href=""></a>
<table border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="156"><a onclick="var doc = document.forms[0];
// 4/12/4 sandeep, Disallow function if Save is going on.
if (doc.SaveMode.value == &quot;Y&quot;) {
  alert(&quot;Update is in progress. \n\n Please wait....&quot;);
  return false;
   }


OpenInvoiceTableWindow();

return false;" href=""><b><font size="2" color="#0000FF" face="Arial">Edit Invoice</font></b></a></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#9F9FE0"><div align="center"><b><font size="2" face="Arial">Invoice Detail</font></b></div></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="100%" bgcolor="#E8E0FF" colspan="5"><font size="2" face="Arial">
<input name="%%Surrogate_InvoiceDtStatus" type="hidden" value="1">
<input type="checkbox" name="InvoiceDtStatus" value="Lien Waiver Receipt" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
">Lien Waiver Receipt
<input type="checkbox" name="InvoiceDtStatus" value="Bill of Lading Receipt" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
">Bill of Lading Receipt
<input type="checkbox" name="InvoiceDtStatus" value="Permit Received by Sign Team" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
">Permit Received by Sign Team</font></td></tr>

<tr valign="top"><td width="26%" bgcolor="#E8E0FF"><font size="2" face="Arial">Invoice Completion Date</font></td><td width="74%" bgcolor="#E8E0FF" colspan="4"><font size="2" face="Arial">
<input name="CompletionDt" value="" SIZE=10 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) ||  (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onblur="//This is used to ensure that date entered is in correct format
var doc = document.forms[0];
if (( !isBlank(doc.CompletionDt.value) )  &amp;&amp;  (!isValidDate(doc.CompletionDt.value)) )

                        {
                              alert( 'All Dates must be in one of the following formats:\n' +
                              '1. MMDD\n' +
                              '2. MMDDYYYY\n' +
                              '3. MM/DD\n' +
                              '4. MM/DD/YYYY\n\n' +
                              'Please enter a valid date.');
                       doc.CompletionDt.focus();
                            return false;                            
                        }       
doc.CompletionDt.value=formatDate(doc.CompletionDt.value)" onchange="var doc = document.forms[0];

if (confirm(&quot;Entering this date will update other fields on this document as well as the location document.  Do you want to update ?&quot;))
{  doc.updateGroundSign.click() }
else {
   doc.CompletionDt.value = &quot;&quot;
   doc.saveAction.click()       
}

" title="Date"></font></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="37%" bgcolor="#E8E0FF"><div align="center"><font size="2" face="Arial">Charge</font></div></td><td width="17%" bgcolor="#E8E0FF"><div align="center"><font size="2" face="Arial">Invoice Number</font></div></td><td width="16%" bgcolor="#E8E0FF"><div align="center"><font size="2" face="Arial">Invoice Date</font></div></td><td width="14%" bgcolor="#E8E0FF"><div align="center"><font size="2" face="Arial">Date Paid</font></div></td><td width="15%" bgcolor="#E8E0FF"><div align="center"><font size="2" face="Arial">Amount Paid</font></div></td></tr>
</table>
<Br>
<table border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="156" bgcolor="#E8E0FF"><font size="2" face="Arial">Invoice Comments:</font></td><td width="654"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td></tr>

<tr valign="top"><td width="810" colspan="2"><font size="2" face="Arial"></font></td></tr>
</table>
</DIV><DIV ID=tab5>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="8%" bgcolor="#009F71"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td><td width="92%" bgcolor="#009F71"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="center"><b><font size="2" face="Arial">Project Dates</font></b></div></td><td width="1%" bgcolor="#009F71"><img src="/icons/ecblank.gif" border="0" height="1" width="96" alt=""><br>
<div align="right">
<input type="button" onclick="printDiv();" onmouseover="var doc = document.forms[0];
this.style.color='blue';" onmouseout="this.style.color='white';" value="Print" style="color=white; font-size=10pt; font-weight=BOLD; background-color=transparent;"></div></td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Open:</font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">08/07/1993</font><font size="2" face="Arial"> </font><font size="2" face="Arial">A</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">Close:</font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial"></font><font size="2" face="Arial"> </font><font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Lease Expires:</font></div></td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">20430831</font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">Lease Options:</font></div></td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">  </font><font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">SCA Creation:</font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial">02/14/2007</font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">SCA Completed:</font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial">03/01/2007</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif" HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">DM Letter Sent:</font></div></td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial"></font><font size="2" face="Arial">N/A</font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">PUD Letter Sent:</font></div></td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial"></font><font size="2" face="Arial">N/A</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">         </font></div></td><td width="77%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"> <b><font size="2" face="Arial">                                                                      </font></b><b><font size="2" face="Arial">Approvals</font></b></div></td><td width="1%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">LL Appr Reqd?</font></div></td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">  </font><font size="2" face="Arial">
<input name="%%Surrogate_LLApprReq" type="hidden" value="1">
<input type="radio" name="LLApprReq" value="Yes" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
">Yes
<input type="radio" name="LLApprReq" value="No" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
">No</font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">LL Appr Recd:</font></div></td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="LandlordRecDt" value="" title="Date"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">LL Appr Request:</font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="LandlordReqDt" value="" title="Date"></font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">StrOps Appr Recd:</font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="StoreOpsRecDt" value="" title="Date"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">StrOps Appr Rqst:</font></div></td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="StoreOpsReqDt" value="" title="Date"></font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">FPD&amp;E Approval:</font></div></td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="FPDApprovalDt" value="" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamMgrRole.value == &quot;Y&quot; ) ||  (doc.SignTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><b><font size="2" face="Arial">                                                              </font></b><b><font size="2" face="Arial">Drawings</font></b></div></td><td width="1%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Disc Drwg to Mfg</font><font color="#2F2F2F">:</font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="DiscDrawDt" value="" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font><font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="%%Surrogate_DiscDwInd" type="hidden" value="1">
<select name="DiscDwInd" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onchange="doc = document.forms[0];
selPos = doc.DiscDwInd.selectedIndex;
selVal = doc.DiscDwInd[selPos].text;

if( selVal == &quot;A&quot; )
 {
  document.forms[0].updateDates.click();
 }
">
<option selected>
<option>A
<option>E</select>
</font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">Concept Drwg to FP</font><font color="#2F2F2F">:</font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ConceptDrawDt" value="" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font><font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="%%Surrogate_ConceptDwInd" type="hidden" value="1">
<select name="ConceptDwInd" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) )
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onchange="doc = document.forms[0];
selPos = doc.ConceptDwInd.selectedIndex;
selVal = doc.ConceptDwInd[selPos].text;

if( selVal == &quot;A&quot; )
 {
  document.forms[0].updateDates.click();
 }
">
<option selected>
<option>A
<option>E
<option>N</select>
</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Concept Drwg Appr</font><font color="#2F2F2F">:</font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="ConceptDrawAppr" value="" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font><font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="%%Surrogate_ConceptApprInd" type="hidden" value="1">
<select name="ConceptApprInd" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onchange="doc = document.forms[0];
selPos = doc.ConceptApprInd.selectedIndex;
selVal = doc.ConceptApprInd[selPos].text;

if( selVal == &quot;A&quot; )
 {
  document.forms[0].updateDates.click();
 }
">
<option selected>
<option>A
<option>E
<option>O
<option>N</select>
</font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">As Built CAD Drwg to FP</font><font color="#2F2F2F">:</font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial">
<input name="CADDrawDt" value="" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font><font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="%%Surrogate_CADDwInd" type="hidden" value="1">
<select name="CADDwInd" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onchange="doc = document.forms[0];
selPos = doc.CADDwInd.selectedIndex;
selVal = doc.CADDwInd[selPos].text;

if( selVal == &quot;A&quot; )
 {
  document.forms[0].updateDates.click();
 }
">
<option selected>
<option>A
<option>E
<option>N
<option>O</select>
</font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial"> Drwgs to Sign Team</font><font color="#2F2F2F">:</font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="SignDrawDt" value="04/20/2007" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font><font size="2" face="Arial">
<input name="%%Surrogate_SgnDwInd" type="hidden" value="1">
<select name="SgnDwInd" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" onchange="doc = document.forms[0];
selPos = doc.SgnDwInd.selectedIndex;
selVal = doc.SgnDwInd[selPos].text;

if( selVal == &quot;A&quot; )
 {
  document.forms[0].updateDates.click();
 }
">
<option>
<option>A
<option selected>E</select>
</font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" color="#2F2F2F" face="Arial">Drwgs Rlsd to Mfg: </font><font size="2" face="Arial"> </font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial"></font> <font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Drwg Rev Reqst</font><font size="2" color="#2F2F2F" face="Arial">:</font></div></td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial"></font><font size="2" face="Arial"> </font><font size="2" face="Arial"></font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">Revisions to Mfg:</font></div></td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial"></font> <font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Rev to Sign Team: </font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="DrawRevDt" value="" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.SignMfgRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 </td></tr>

<tr valign="top"><td width="1%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<div align="right"><b><font size="2" face="Arial">                                                                       PO/CO</font></b></div></td><td width="1%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%" bgcolor="#7FFF7F"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">PO Initial Approval: </font></div></td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial"></font><br>
 <font size="2" face="Arial"></font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">PO Final Approval:</font></div></td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial"></font><font size="2" face="Arial"> </font><font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">PO Creation:</font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial"></font><font size="2" face="Arial"> </font><font size="2" face="Arial"></font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">Budget Rtd/Appr:</font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"></font>   <font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">CO Creation:</font></div></td><td width="77%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial"></font><font size="2" face="Arial"> </font><font size="2" face="Arial"></font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">CO Approval:</font></div></td><td width="23%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial"></font><font size="2" face="Arial"> </font><font size="2" face="Arial"></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Call Back Date: </font></div></td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<font size="2" face="Arial"> </font><font size="2" face="Arial">
<input name="CallBackDt" value="" SIZE=8 onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; )  ||  (doc.SignTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" title="Date"></font><font size="2" face="Arial"> </font></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
<div align="right"><font size="2" face="Arial">Sign Project Compl:</font></div></td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
 <font size="2" face="Arial">
<input name="SignProjCompDt" value=""></font></td></tr>

<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
</td><td width="77%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
<IMG SRC="/icons/ecblank.gif"  HEIGHT=6></td><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="136" alt=""><br>
</td><td width="23%"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>
</td></tr>
</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%" bgcolor="#E0FFDF"><img src="/icons/ecblank.gif" border="0" height="1" width="144" alt=""><br>
<div align="right"><font size="2" face="Arial">Call Back Requirements:</font></div></td><td width="100%" bgcolor="#F7F7F7"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""><br>

<textarea name="CallBackReq" rows="7" cols="50" onkeydown="textCounter(this.form.CallBackReq, 500);" onkeyup="textCounter(this.form.CallBackReq, 500);" onfocus="var doc = document.forms[0];
if ((doc.LEDTeamRole.value == &quot;Y&quot; )  ||  (doc.SignTeamRole.value == &quot;Y&quot; ) || (doc.SignTeamAdminRole.value == &quot;Y&quot; )  || (doc.DTRTeamRole.value == &quot;Y&quot; ) || (doc.SuperRole.value == &quot;Y&quot; ) || (doc.SignReaders.value == &quot;Y&quot; ) || (doc.DCRole.value == &quot;Y&quot; ) || (doc.FPDTeamRole.value == &quot;Y&quot; ) || (doc.FPDTeamMgrRole.value == &quot;Y&quot; ))
{
alert(&quot;You are not authorized to change this information.&quot;);
doc.Cursor.focus();
}
" style="width=100%"></textarea>
</td></tr>
</table>

</DIV></DIV>
<br>
<br>
<font size="1" color="#ffffff" face="Arial">
<input name="Cursor" value="" size=1 maxlength=1 style="border:0;"></font><br>
<br>

<input type="button" value="submitPO" id="submitPO_1" style="visibility=hidden" title="submitPO" name="submitPO" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.37B8', this, null)">
<input type="button" value="saveAction" id="saveAction" style="visibility=hidden" title="saveAction" name="saveAction" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3870', this, null)">
<input type="button" value="updateDates" id="updateDates" style="visibility=hidden" title="updateDates" name="updateDates" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3916', this, null)">
<input type="button" value="ExitAction" id="ExitAction" style="visibility=hidden" title="ExitAction" name="ExitAction" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3AF0', this, null)">
<input type="button" value="sendNotification" id="sendNotification" style="visibility=hidden" title="sendNotification" name="sendNotification" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3BDA', this, null)">
<input type="button" value="updateGroundSign" id="updateGroundSign" style="visibility=hidden" title="updateGroundSign" name="updateGroundSign" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3CB2', this, null)">
<input type="button" value="updateProjNumPOCO" id="updateProjNumPOCO" style="visibility=hidden" title="updateProjNumPOCO" name="updateProjNumPOCO" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3D8E', this, null)">
<input type="button" value="sendReqToDeadEMail" id="sendReqToDeadEMail" style="visibility=hidden" title="sendReqToDeadEMail" name="sendReqToDeadEMail" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3E84', this, null)">
<input type="button" value="updateSignDetail" id="updateSignDetail" style="visibility=hidden" title="updateSignDetail" name="updateSignDetail" onclick="return _doClick('86256474006E4068.f97f5cecb01d87a88625718d006d87f0/$Body/30.3F94', this, null)">
<p>
<input name="ControlsDBRepID" type="hidden" value="86256426:0054A3F1">
<input name="ContactsDBRepID" type="hidden" value="86256427:006E3965">
<input name="MaintenanceDBRepID" type="hidden" value="8625660C:0012F2E5">
<input name="DocUNID" type="hidden" value="E82B24AC40225AA9862572820079A885">
<input name="PODocID" type="hidden" value="">
<input name="IDCabSize" type="hidden" value="2' 7&quot; x 8'8&quot;, 2'8&quot; x 9'2&quot;, 2'8&quot; x 10'1&quot;, 3'7&quot; x 10'1&quot;, 3' 7&quot; x 12' 3&quot;, 5'x16', 4'x14', 8'x25', Other">
<input name="IDVerbage" type="hidden" value="Mortar &amp; Pestle, Walgreens, W Logo, Drive-Thru Pharmacy, 24-Hours, Pharmacy, Other">
<input name="RdbCabSize" type="hidden" value="2'8&quot; x 5'9&quot;, 2'8&quot; x 8'8&quot;, 2'8&quot; x 9'2&quot;, 2'8&quot; x 10'1&quot;, 3'7&quot; x 9'2&quot;, 4'3&quot; x 10'1&quot;, 3'7&quot; x 10'1&quot;, 3'8&quot; x 10'11&quot;, 5' x 15'4&quot;, Other">
<input name="RdbCabType" type="hidden" value="Manual, LED, None">
<input name="RdbColor" type="hidden" value="1/3 Full Color 2/3 Red, Red, Full Color, Full as White, Amber, Other">
<input name="RdbPixels" type="hidden" value="24 x 80, 24 x 72, 16 x 80, 16 x 72, 32 x 48, 32 x 80, 32 x 96, 32 x 128, 48 x 48, 48 x 64, 32 x 144, 48 x 160, 48 x 176, 64 x 224, 80 x 256, Other">
<input name="OAH" type="hidden" value="Other, 10', 12', 20', 23'8&quot;, 25', 35', 50'">
<input name="LEDRestriction" type="hidden" value="No Scrolling, No Flashing, TimeTemp Required, Community Message Required, Interval Restrictions, None, Other">
<input name="ColorRestriction" type="hidden" value="Red, Green, Amber/Yellow, Full Color, 1/3 Full Color 2/3 Red, No Color Restriction, Other">
<input name="COStatus" type="hidden" value="">
<input name="TotCO" type="hidden" value="">
<input name="dbPath" type="hidden" value="facility/vndfdloc.nsf">
<input name="SignMfgRole" type="hidden" value="N">
<input name="SignTeamRole" type="hidden" value="N">
<input name="SignTeamAdminRole" type="hidden" value="N">
<input name="SignTeamMgrRole" type="hidden" value="N">
<input name="FPDTeamRole" type="hidden" value="N">
<input name="FPDTeamMgrRole" type="hidden" value="N">
<input name="LEDTeamRole" type="hidden" value="N">
<input name="DTRTeamRole" type="hidden" value="N">
<input name="DCRole" type="hidden" value="N">
<input name="SuperRole" type="hidden" value="N">
<input name="SignReaders" type="hidden" value="N">
<input name="MailSent2Super" type="hidden" value="N">
<input name="Remote_User" type="hidden" value="CN=Curt Frericks/OU=Corp/O=Walgreens">
<input name="TotSOLess" type="hidden" value="">
<input name="SCAInitiationDt" type="hidden" value="02/14/2007">
<input name="RefreshFlag" type="hidden" value="N">
<input name="CommentID" type="hidden" value="5127577420E72AF2862572910077B22C">
<input name="ExcelKeyCell" type="hidden" value="5127577420E72AF2862572910077B22C">
<input name="DeadEMailFlag" type="hidden" value="">
<input name="Software" type="hidden" value="Complay 3.5, Complay 2000, Venus 1500, Complay 3.5.44G, Other">
<input name="ConstContact" type="hidden" value="Amber DeSanctis, Pat Gurley, Sharon Tascher">
<input name="LEDColorRes" type="hidden" value="1.375, 0.71, 0.51, Other">
<input name="LEDRes" type="hidden" value="1.375, 0.71, 0.51, Other">
<input name="Hoist" type="hidden" value="Yes, No, N/A">
<input name="ComType" type="hidden" value="RF, Cable, N/A">
<input name="LEDFaceType" type="hidden" value="0, 1, 2, 3, 4">
<input name="RdbLines" type="hidden" value="0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12">
<input name="SharedSign" type="hidden" value="Yes, No, N/A">
<input name="LEDFreqUnit" type="hidden" value="Minute, Hour, Day">
<input name="LEDAnimation" type="hidden" value="No Graphics or static images, No animation/moving pictures at all, No Logos, No Restrictions, Other">
<input name="HrRestrictionInd" type="hidden" value="Yes, No, N/A">
<input name="RFCardType" type="hidden" value="YDI, WiBox, Other">
<input name="CPU" type="hidden" value="HX+, HX1, M2, MDC, Z180, Other">
<input name="BaudType" type="hidden" value="115200, 19200, Other">
<input name="SignDetail1_Diff_Flag" type="hidden" value="">
<input name="SignDetail2_Diff_Flag" type="hidden" value="">
<input name="SignDetail3_Diff_Flag" type="hidden" value="">
<input name="SignDetail4_Diff_Flag" type="hidden" value="">
<input name="Sgn1_InstallDtModifiedFlag" type="hidden" value="">
<input name="SgnInInd_InitVal" type="hidden" value="">
<input name="Sgn2_InstallDtModifiedFlag" type="hidden" value="">
<input name="Sgn2InInd_InitVal" type="hidden" value="">
<input name="Sgn3_InstallDtModifiedFlag" type="hidden" value="">
<input name="Sgn3InInd_InitVal" type="hidden" value="">
<input name="Sgn4_InstallDtModifiedFlag" type="hidden" value="">
<input name="Sgn4InInd_InitVal" type="hidden" value="">
<input name="LocationNumber" type="hidden" value="02832">
<input name="LocationType" type="hidden" value="S">
<input name="Address1" type="hidden" value="4010 SW 137th Ave">
<input name="City" type="hidden" value="Miami">
<input name="State" type="hidden" value="FL">
<input name="ZipFullDisp" type="hidden" value="33175">
<input name="LocationName" type="hidden" value="Walgreen Drug Store">
<input name="CornerAddress" type="hidden" value="Bird Road &amp; 137th">
<input name="County" type="hidden" value="Dade">
<input name="StoreMgrName" type="hidden" value="Angelo B Martinez">
<input name="ScopeOfWorkType" type="hidden" value="In Store Clinic">
<input name="MainStorePhone" type="hidden" value="305-554-4549">
<input name="DistrictNumber" type="hidden" value="023">
<input name="DistrictName" type="hidden" value="Miami South">
<input name="DistrictMgr" type="hidden" value="Jorge G Morales">
<input name="RegionNumber" type="hidden" value="06">
<input name="RegionName" type="hidden" value="P.T. Bonk">
<input name="RegionMgr" type="hidden" value="Paul T Bonk">
<input name="StoreType" type="hidden" value="Regular">
<input name="DTRDepot" type="hidden" value="00056">
<input name="BuildingSqFt" type="hidden" value="14,300">
<input name="DriveThruType" type="hidden" value="Single">
<input name="Dimensions" type="hidden" value=" X   ">
<input name="FoodMart" type="hidden" value="">
<input name="ExtElevation" type="hidden" value="">
<input name="LiqDeptType" type="hidden" value="">
<input name="OneHrPhoto" type="hidden" value="">
<input name="Open24Hrs" type="hidden" value="Yes">
<input name="LaunchDt" type="hidden" value="">
<input name="BuildingResponsible" type="hidden" value="">
<input name="CableCompName" type="hidden" value="Datatec Systems, Inc.">
<input name="DeveloperCompany" type="hidden" value="">
<input name="ProjectPlanner" type="hidden" value="G. Hinojosa">
<input name="LandlordCompany" type="hidden" value="">
<input name="ProjectManager" type="hidden" value="H. Childs">
<input name="RealEstateMgr" type="hidden" value="K. Miller">
<input name="SignMfgCompany" type="hidden" value="Icon Midwest">
<input name="WallSignOrigInstallDt" type="hidden" value="">
<input name="SgnWLOrigInd" type="hidden" value="">
<input name="SignOrigInstallDt" type="hidden" value="">
<input name="SgnInOrigInd" type="hidden" value="">
<input name="Sign2OrigInstallDt" type="hidden" value="">
<input name="Sgn2InOrigInd" type="hidden" value="">
<input name="Sign3OrigInstallDt" type="hidden" value="">
<input name="Sgn3InOrigInd" type="hidden" value="">
<input name="Sign4OrigInstallDt" type="hidden" value="">
<input name="Sgn4InOrigInd" type="hidden" value="">
<input name="GS3FoundationInstallDt" type="hidden" value="">
<input name="GS3FoundationInd" type="hidden" value="">
<input name="GS4FoundationInstallDt" type="hidden" value="">
<input name="GS4FoundationInd" type="hidden" value="">
<input name="PONumber" type="hidden" value="">
<input name="POStatus" type="hidden" value="">
<input name="SO1Qty" type="hidden" value="">
<input name="SO1" type="hidden" value="">
<input name="CSO1" type="hidden" value="">
<input name="SO1SCost" type="hidden" value="">
<input name="SO1TSCost" type="hidden" value="">
<input name="SO1ICost" type="hidden" value="">
<input name="SO1TICost" type="hidden" value="">
<input name="SO2Qty" type="hidden" value="">
<input name="SO2" type="hidden" value="">
<input name="CSO2" type="hidden" value="">
<input name="SO2SCost" type="hidden" value="">
<input name="SO2TSCost" type="hidden" value="">
<input name="SO2ICost" type="hidden" value="">
<input name="SO2TICost" type="hidden" value="">
<input name="SO3Qty" type="hidden" value="">
<input name="SO3" type="hidden" value="">
<input name="CSO3" type="hidden" value="">
<input name="SO3SCost" type="hidden" value="">
<input name="SO3TSCost" type="hidden" value="">
<input name="SO3ICost" type="hidden" value="">
<input name="SO3TICost" type="hidden" value="">
<input name="SO4Qty" type="hidden" value="">
<input name="SO4" type="hidden" value="">
<input name="CSO4" type="hidden" value="">
<input name="SO4SCost" type="hidden" value="">
<input name="SO4TSCost" type="hidden" value="">
<input name="SO4ICost" type="hidden" value="">
<input name="SO4TICost" type="hidden" value="">
<input name="SO5Qty" type="hidden" value="">
<input name="SO5" type="hidden" value="">
<input name="CSO5" type="hidden" value="">
<input name="SO5SCost" type="hidden" value="">
<input name="SO5TSCost" type="hidden" value="">
<input name="SO5ICost" type="hidden" value="">
<input name="SO5TICost" type="hidden" value="">
<input name="SO6Qty" type="hidden" value="">
<input name="SO6" type="hidden" value="">
<input name="CSO6" type="hidden" value="">
<input name="SO6SCost" type="hidden" value="">
<input name="SO6TSCost" type="hidden" value="">
<input name="SO6ICost" type="hidden" value="">
<input name="SO6TICost" type="hidden" value="">
<input name="SO7Qty" type="hidden" value="">
<input name="SO7" type="hidden" value="">
<input name="CSO7" type="hidden" value="">
<input name="SO7SCost" type="hidden" value="">
<input name="SO7TSCost" type="hidden" value="">
<input name="SO7ICost" type="hidden" value="">
<input name="SO7TICost" type="hidden" value="">
<input name="SO8Qty" type="hidden" value="">
<input name="SO8" type="hidden" value="">
<input name="CSO8" type="hidden" value="">
<input name="SO8SCost" type="hidden" value="">
<input name="SO8TSCost" type="hidden" value="">
<input name="SO8ICost" type="hidden" value="">
<input name="SO8TICost" type="hidden" value="">
<input name="SO9Qty" type="hidden" value="">
<input name="SO9" type="hidden" value="">
<input name="CSO9" type="hidden" value="">
<input name="SO9SCost" type="hidden" value="">
<input name="SO9TSCost" type="hidden" value="">
<input name="SO9ICost" type="hidden" value="">
<input name="SO9TICost" type="hidden" value="">
<input name="SO10Qty" type="hidden" value="">
<input name="SO10" type="hidden" value="">
<input name="CSO10" type="hidden" value="">
<input name="SO10SCost" type="hidden" value="">
<input name="SO10TSCost" type="hidden" value="">
<input name="SO10ICost" type="hidden" value="">
<input name="SO10TICost" type="hidden" value="">
<input name="SO11Qty" type="hidden" value="">
<input name="SO11" type="hidden" value="">
<input name="CSO11" type="hidden" value="">
<input name="SO11SCost" type="hidden" value="">
<input name="SO11TSCost" type="hidden" value="">
<input name="SO11ICost" type="hidden" value="">
<input name="SO11TICost" type="hidden" value="">
<input name="SO12Qty" type="hidden" value="">
<input name="SO12" type="hidden" value="">
<input name="CSO12" type="hidden" value="">
<input name="SO12SCost" type="hidden" value="">
<input name="SO12TSCost" type="hidden" value="">
<input name="SO12ICost" type="hidden" value="">
<input name="SO12TICost" type="hidden" value="">
<input name="SO13Qty" type="hidden" value="">
<input name="SO13" type="hidden" value="">
<input name="CSO13" type="hidden" value="">
<input name="SO13SCost" type="hidden" value="">
<input name="SO13TSCost" type="hidden" value="">
<input name="SO13ICost" type="hidden" value="">
<input name="SO13TICost" type="hidden" value="">
<input name="SO14Qty" type="hidden" value="">
<input name="SO14" type="hidden" value="">
<input name="CSO14" type="hidden" value="">
<input name="SO14SCost" type="hidden" value="">
<input name="SO14TSCost" type="hidden" value="">
<input name="SO14ICost" type="hidden" value="">
<input name="SO14TICost" type="hidden" value="">
<input name="SO15Qty" type="hidden" value="">
<input name="SO15" type="hidden" value="">
<input name="CSO15" type="hidden" value="">
<input name="SO15SCost" type="hidden" value="">
<input name="SO15TSCost" type="hidden" value="">
<input name="SO15ICost" type="hidden" value="">
<input name="SO15TICost" type="hidden" value="">
<input name="SO16Qty" type="hidden" value="">
<input name="SO16" type="hidden" value="">
<input name="CSO16" type="hidden" value="">
<input name="SO16SCost" type="hidden" value="">
<input name="SO16TSCost" type="hidden" value="">
<input name="SO16ICost" type="hidden" value="">
<input name="SO16TICost" type="hidden" value="">
<input name="SO17Qty" type="hidden" value="">
<input name="SO17" type="hidden" value="">
<input name="CSO17" type="hidden" value="">
<input name="SO17SCost" type="hidden" value="">
<input name="SO17TSCost" type="hidden" value="">
<input name="SO17ICost" type="hidden" value="">
<input name="SO17TICost" type="hidden" value="">
<input name="SO18Qty" type="hidden" value="">
<input name="SO18" type="hidden" value="">
<input name="CSO18" type="hidden" value="">
<input name="SO18SCost" type="hidden" value="">
<input name="SO18TSCost" type="hidden" value="">
<input name="SO18ICost" type="hidden" value="">
<input name="SO18TICost" type="hidden" value="">
<input name="SO19Qty" type="hidden" value="">
<input name="SO19" type="hidden" value="">
<input name="CSO19" type="hidden" value="">
<input name="SO19SCost" type="hidden" value="">
<input name="SO19TSCost" type="hidden" value="">
<input name="SO19ICost" type="hidden" value="">
<input name="SO19TICost" type="hidden" value="">
<input name="SO20Qty" type="hidden" value="">
<input name="SO20" type="hidden" value="">
<input name="CSO20" type="hidden" value="">
<input name="SO20SCost" type="hidden" value="">
<input name="SO20TSCost" type="hidden" value="">
<input name="SO20ICost" type="hidden" value="">
<input name="SO20TICost" type="hidden" value="">
<input name="TotSOSCost" type="hidden" value="">
<input name="TotSOICost" type="hidden" value="">
<input name="TotSOCost" type="hidden" value="">
<input name="TotLocCOCost" type="hidden" value="">
<input name="TotLocSignCost" type="hidden" value="">
<input name="SI1" type="hidden" value="">
<input name="SINo1" type="hidden" value="">
<input name="SIDt1" type="hidden" value="">
<input name="SIDtPd1" type="hidden" value="">
<input name="SIAmtPd1" type="hidden" value="">
<input name="SI2" type="hidden" value="">
<input name="SINo2" type="hidden" value="">
<input name="SIDt2" type="hidden" value="">
<input name="SIDtPd2" type="hidden" value="">
<input name="SIAmtPd2" type="hidden" value="">
<input name="SI3" type="hidden" value="">
<input name="SINo3" type="hidden" value="">
<input name="SIDt3" type="hidden" value="">
<input name="SIDtPd3" type="hidden" value="">
<input name="SIAmtPd3" type="hidden" value="">
<input name="SI4" type="hidden" value="">
<input name="SINo4" type="hidden" value="">
<input name="SIDt4" type="hidden" value="">
<input name="SIDtPd4" type="hidden" value="">
<input name="SIAmtPd4" type="hidden" value="">
<input name="SI5" type="hidden" value="">
<input name="SINo5" type="hidden" value="">
<input name="SIDt5" type="hidden" value="">
<input name="SIDtPd5" type="hidden" value="">
<input name="SIAmtPd5" type="hidden" value="">
<input name="SI6" type="hidden" value="">
<input name="SINo6" type="hidden" value="">
<input name="SIDt6" type="hidden" value="">
<input name="SIDtPd6" type="hidden" value="">
<input name="SIAmtPd6" type="hidden" value="">
<input name="SI7" type="hidden" value="">
<input name="SINo7" type="hidden" value="">
<input name="SIDt7" type="hidden" value="">
<input name="SIDtPd7" type="hidden" value="">
<input name="SIAmtPd7" type="hidden" value="">
<input name="SI8" type="hidden" value="">
<input name="SINo8" type="hidden" value="">
<input name="SIDt8" type="hidden" value="">
<input name="SIDtPd8" type="hidden" value="">
<input name="SIAmtPd8" type="hidden" value="">
<input name="SI9" type="hidden" value="">
<input name="SINo9" type="hidden" value="">
<input name="SIDt9" type="hidden" value="">
<input name="SIDtPd9" type="hidden" value="">
<input name="SIAmtPd9" type="hidden" value="">
<input name="SI10" type="hidden" value="">
<input name="SINo10" type="hidden" value="">
<input name="SIDt10" type="hidden" value="">
<input name="SIDtPd10" type="hidden" value="">
<input name="SIAmtPd10" type="hidden" value="">
<input name="SI11" type="hidden" value="">
<input name="SINo11" type="hidden" value="">
<input name="SIDt11" type="hidden" value="">
<input name="SIDtPd11" type="hidden" value="">
<input name="SIAmtPd11" type="hidden" value="">
<input name="SI12" type="hidden" value="">
<input name="SINo12" type="hidden" value="">
<input name="SIDt12" type="hidden" value="">
<input name="SIDtPd12" type="hidden" value="">
<input name="SIAmtPd12" type="hidden" value="">
<input name="SI13" type="hidden" value="">
<input name="SINo13" type="hidden" value="">
<input name="SIDt13" type="hidden" value="">
<input name="SIDtPd13" type="hidden" value="">
<input name="SIAmtPd13" type="hidden" value="">
<input name="SI14" type="hidden" value="">
<input name="SINo14" type="hidden" value="">
<input name="SIDt14" type="hidden" value="">
<input name="SIDtPd14" type="hidden" value="">
<input name="SIAmtPd14" type="hidden" value="">
<input name="SI15" type="hidden" value="">
<input name="SINo15" type="hidden" value="">
<input name="SIDt15" type="hidden" value="">
<input name="SIDtPd15" type="hidden" value="">
<input name="SIAmtPd15" type="hidden" value="">
<input name="SI16" type="hidden" value="">
<input name="SINo16" type="hidden" value="">
<input name="SIDt16" type="hidden" value="">
<input name="SIDtPd16" type="hidden" value="">
<input name="SIAmtPd16" type="hidden" value="">
<input name="SI17" type="hidden" value="">
<input name="SINo17" type="hidden" value="">
<input name="SIDt17" type="hidden" value="">
<input name="SIDtPd17" type="hidden" value="">
<input name="SIAmtPd17" type="hidden" value="">
<input name="SI18" type="hidden" value="">
<input name="SINo18" type="hidden" value="">
<input name="SIDt18" type="hidden" value="">
<input name="SIDtPd18" type="hidden" value="">
<input name="SIAmtPd18" type="hidden" value="">
<input name="SI19" type="hidden" value="">
<input name="SINo19" type="hidden" value="">
<input name="SIDt19" type="hidden" value="">
<input name="SIDtPd19" type="hidden" value="">
<input name="SIAmtPd19" type="hidden" value="">
<input name="SI20" type="hidden" value="">
<input name="SINo20" type="hidden" value="">
<input name="SIDt20" type="hidden" value="">
<input name="SIDtPd20" type="hidden" value="">
<input name="SIAmtPd20" type="hidden" value="">
<input name="SI21" type="hidden" value="">
<input name="SINo21" type="hidden" value="">
<input name="SIDt21" type="hidden" value="">
<input name="SIDtPd21" type="hidden" value="">
<input name="SIAmtPd21" type="hidden" value="">
<input name="SI22" type="hidden" value="">
<input name="SINo22" type="hidden" value="">
<input name="SIDt22" type="hidden" value="">
<input name="SIDtPd22" type="hidden" value="">
<input name="SIAmtPd22" type="hidden" value="">
<input name="SI23" type="hidden" value="">
<input name="SINo23" type="hidden" value="">
<input name="SIDt23" type="hidden" value="">
<input name="SIDtPd23" type="hidden" value="">
<input name="SIAmtPd23" type="hidden" value="">
<input name="TotInvoiceAmtPd" type="hidden" value="">
<input name="InvComments" type="hidden" value="">
<input name="ActualOpenDate" type="hidden" value="08/07/1993">
<input name="OpenInd" type="hidden" value="A">
<input name="ActualCloseDate" type="hidden" value="">
<input name="CloseInd" type="hidden" value="">
<input name="LeaseTermDt" type="hidden" value="20430831">
<input name="LeaseOptDt" type="hidden" value="">
<input name="SCACreationDt" type="hidden" value="02/14/2007">
<input name="SCACompletionDt" type="hidden" value="03/01/2007">
<input name="DMMailDt" type="hidden" value="">
<input name="DMMailInd" type="hidden" value="N/A">
<input name="PUDMailDt" type="hidden" value="">
<input name="PUDMailInd" type="hidden" value="N/A">
<input name="TransCreationDt" type="hidden" value="">
<input name="TransCreator" type="hidden" value="">
<input name="RevReqDt" type="hidden" value="">
<input name="RevReqCreator" type="hidden" value="">
<input name="TransRevDt" type="hidden" value="">
<input name="TransRevisor" type="hidden" value="">
<input name="POApprovalDt2" type="hidden" value="">
<input name="POApprover2" type="hidden" value="">
<input name="POApprovalDt" type="hidden" value="">
<input name="POApprover" type="hidden" value="">
<input name="POCreationDt" type="hidden" value="">
<input name="POCreator" type="hidden" value="">
<input name="BudgRtDt" type="hidden" value="">
<input name="BudgApprDt" type="hidden" value="">
<input name="COCreationDt" type="hidden" value="">
<input name="COCreator" type="hidden" value="">
<input name="COApprovalDt" type="hidden" value="">
<input name="COApprover" type="hidden" value="">
<input name="CallBackReqText" type="hidden" value="">
<input name="SignMFGCoID" type="hidden" value="GGRN-3L4MAB">
<input name="SignMFGContactID" type="hidden" value="">
<input name="SignInstallerCoID" type="hidden" value="">
<input name="AllIDs" type="hidden" value="GGRN-3L4MAB">
<input name="RdbCabSizeOther1" type="hidden" value="">
<input name="RdbCabSizeOther2" type="hidden" value="">
<input name="RdbCabSizeOther3" type="hidden" value="">
<input name="RdbCabSizeOther4" type="hidden" value="">
<input name="PixelsOther1" type="hidden" value="">
<input name="PixelsOther2" type="hidden" value="">
<input name="PixelsOther3" type="hidden" value="">
<input name="PixelsOther4" type="hidden" value="">
<input name="PixelsColorOther1" type="hidden" value="">
<input name="PixelsColorOther2" type="hidden" value="">
<input name="PixelsColorOther3" type="hidden" value="">
<input name="PixelsColorOther4" type="hidden" value="">
<input name="SignMfgNotesID" type="hidden" value="10001020">
<input name="AllAuthors" type="hidden" value="10001020">
<input name="AllAuthors" type="hidden" value="FacDivConsSignProgramTeam">
<input name="AllAuthors" type="hidden" value="10001028">
<input name="AllAuthors" type="hidden" value="10001029">
<input name="AllAuthors" type="hidden" value="FacDivSignSuperintendents">
<input name="AllAuthors" type="hidden" value="FacDivSignFPDTeam">
<input name="AllAuthors" type="hidden" value="FacDivSignFPDMgr">
<input name="AllAuthors" type="hidden" value="FacDivSignDTRTeam">
<input name="AllAuthors" type="hidden" value="FacDivDevelopers">
<input name="AllAuthors" type="hidden" value="SysAdmin">
<input name="AllAuthors" type="hidden" value="FacDivConsSignProgramTeamMgr">
<input name="AllAuthors" type="hidden" value="FacDivConsSignProgramTeamAdmin">
<input name="AllAuthors" type="hidden" value="FacDivAll">
<input name="AllAuthors" type="hidden" value="FacDivWeb">
<input name="AllReaders" type="hidden" value="10001020">
<input name="AllReaders" type="hidden" value="10001028">
<input name="AllReaders" type="hidden" value="10001029">
<input name="AllReaders" type="hidden" value="FacDivAll">
<input name="AllReaders" type="hidden" value="FacDivWeb">
<input name="AllReaders" type="hidden" value="FacDivConsSignProgramTeam">
<input name="AllReaders" type="hidden" value="FacDivSignSuperintendents">
<input name="AllReaders" type="hidden" value="FacDivSignFPDTeam">
<input name="AllReaders" type="hidden" value="FacDivSignDTRTeam">
<input name="AllReaders" type="hidden" value="FacDivSignFPDMgr">
<input name="AllReaders" type="hidden" value="FacDivDevelopers">
<input name="AllReaders" type="hidden" value="LocalDomainServers">
<input name="AllReaders" type="hidden" value="OtherDomainServers">
<input name="AllReaders" type="hidden" value="SysAdmin">
<input name="AllReaders" type="hidden" value="FacDivConsSignProgramTeamMgr">
<input name="AllReaders" type="hidden" value="FacDivConsSignProgramTeamAdmin"></form>
</body>
</html>

ASKER CERTIFIED SOLUTION
Avatar of Sinoj Sebastian
Sinoj Sebastian
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cfrericks
cfrericks

ASKER

Hi Sinoj,
I don't see the java option under that tab..is there another name for it sometimes?
If you do not have option something like this
http://i14.tinypic.com/48rmlw7.jpg
you need to down load and install
JRE from http://java.com/en/
Thanks! I just had to get the IT people to authorize the java install and now it works fine!