묻고답하기



셀렉트박스의 옵션들이 밑로 나오지 않고 위쪽으로 향하게 하고 싶어요..
윈도우모양으로된 셀렉트박스는 아래에 공간이 부족하면 자동으로 위로 옵션들이 나오던데
스크립트로 모양을 입힌거는 따로 지정해줘야하는건가요..
어디를 고쳐야 될까요..


<html>
<head>
<title>:::::입법지식DB 관리자 시스템:::::</title>
<link href="../css/db.css" type=text/css rel=stylesheet>
</head>
   <script language="JavaScript" type="text/JavaScript">
      <!--
// SaySelect Environment Constants

var SS_ENV = new Object();
SS_ENV.IE_Version = new Number(((window.navigator.appVersion.split('; '))[1].split(' '))[1]);
SS_ENV.CR = new Object();
SS_ENV.CR.ReverseBackground = '#FEFEF9';
SS_ENV.CR.ReverseText = '#FA771F';
SS_ENV.CR.Border = '#D4D4D4';
SS_ENV.CR.BorderActive = '#D4D4D4';
SS_ENV.ImgPrefix = '../images/db/under/';
SS_ENV.DefaultHeight =15;
SS_ENV.ButtonWidth = 15;
SS_ENV.OptionsDivStyle = ''
  + ' display:none;'
  + ' z-index:10;'
  + ' position:absolute;'
  + ' border:1 solid '+ SS_ENV.CR.Border+';'
  + ' background-color:#F1F1F1;'
  + ' scrollbar-face-color:#CBCBCB;'
  + ' scrollbar-shadow-color:CBCBCB;'
  + ' scrollbar-highlight-color:#CBCBCB;'
  + ' scrollbar-3dlight-color:CBCBCB;'
  + ' scrollbar-darkshadow-color:#FEFEF9;'
  + ' scrollbar-track-color:#FEFEF9;'+ '+ '
  + ' scrollbar-arrow-color:#B3B3B3;';
SS_ENV.MouseStyle = 'cursor:hand;'//박스위에올라갔을때의 마우스모양
SS_ENV.OptionNobrStyle = ''
  + ' font-size:11px; padding-bottom:2'+ '
  + ' font-family:굴림;';
// SaySelect Variables
var SS_VAR = new Object();
SS_VAR.DivDummy = document.createElement("DIV");
SS_VAR.SelectList = new Array();
SS_VAR.bEventAttached = false;

var SS_CreatedElements = new Object();

function unloadObjects()
{
  try {
    if (SS_VAR && SS_VAR.SelectList)
    {
      for (key in SS_VAR.SelectList)
      {
        if (SS_VAR.SelectList[key])
        {
          try {
           SS_VAR.SelectList[key].select.setAttribute('SS', 0);
          } catch (e) {};
          delete SS_VAR.SelectList[key];
        }
      }
    }
  } catch (e) {};
}

attachEvent("onunload", unloadObjects);

function SS_create (srcHTML, ListMax, bAutoDetect)
{
  // property
  this.ssID = SS_VAR.SelectList.length;
  this.bOriginalSelect = (bAutoDetect && SS_ENV.IE_Version < 5.5);
  this.select = SS_createElement(srcHTML);
  this.selectedIndex = this.select.selectedIndex;
  this.options = this.select.options;
  this.width = parseInt(this.select.style.width);
  this.height = (this.select.style.height) ? parseInt(this.select.style.height) : SS_ENV.DefaultHeight;
  this.OptionHeight = this.height ;
  this.bListDown = (ListMax && '-'==ListMax.toString().substr(0, 1)) ? false : true;
  this.ListMax = (!isNaN(parseInt(ListMax))) ? Math.abs(ListMax) : 100;

  this.Table;
  this.TitleDiv;
  this.TitleTable;
  this.TitleWrapper;
  this.OptionsDiv;
  this.OptionsWrapper;
  this.OptionsTable;
  this.bFocused = false;
  this.bExpanded = false;
  this.bReverse = false;

  // private method
  this.isThisEventToBeCanceled = SS_isThisEventToBeCanceled;
  this.toggleTitle = SS_toggleTitle;
  this.syncSelectedIndex = SS_syncSelectedIndex;
  this.toggleOptions = SS_toggleOptions;
  this.turnOnOption = SS_turnOnOption;
  this.turnOffOption = SS_turnOffOption;
  this.handleMousewheel = SS_handleMousewheel;
  this.handleOverTitle = SS_handleOverTitle;
  this.handleOutTitle = SS_handleOutTitle;
  this.handleOverOption = SS_handleOverOption;
  this.createTable = SS_createTable;
  this.createTitleDiv = SS_createTitleDiv;
  this.createOptionsDiv = SS_createOptionsDiv;
  this.createOptionTr = SS_createOptionTr;
  this.adjustOptionsDiv = SS_adjustOptionsDiv;
  this.syncOptions = SS_syncOptions;
  this.pressOption = SS_pressOption;
  this.moveOption = SS_moveOption;
  this.releaseOption = SS_releaseOption;
  this.pressTitle = SS_pressTitle;
  this.releaseTitle = SS_releaseTitle;

  // public method
  this.display = SS_display;
  this.insertOption = SS_insertOption;
  this.deleteOption = SS_deleteOption;
  this.changeOption = SS_changeOption;

  // initiate
  this.createTable();
  this.select.setAttribute('SS', this);
  if (!this.bOriginalSelect)
    this.select.onpropertychange = SS_handlePropertychange;
  SS_VAR.SelectList[this.ssID] = this;
}
function SS_display ()
{
  document.write("
n");
  document.all.SS_TempDiv.appendChild(this.Table);
  document.all.SS_TempDiv.removeNode();
}
function SS_write (srcHTML, ListMax, bAutoDetect)
{
  var oSS = new SS_create(srcHTML, ListMax, bAutoDetect);
  oSS.display();
  return oSS;
}
function SS_insertOption (value, innerText, idx)
{
  var NewOption = document.createElement("OPTION");
  SS_CreatedElements[SS_CreatedElements.length] = NewOption;
  this.options.add(NewOption, idx);
  NewOption.innerText = innerText;
  NewOption.value = value;

  if (!this.bOriginalSelect)
    this.createOptionTr(idx);
  this.syncOptions();
  this.adjustOptionsDiv();
  this.syncSelectedIndex();
}
function SS_deleteOption (idx)
{
  this.options.remove(idx);
  if (!this.bOriginalSelect)
    this.OptionsTable.deleteRow(idx);
  this.syncOptions();
  this.adjustOptionsDiv();
  this.syncSelectedIndex();
}
function SS_changeOption (idx, value, innerText)
{
  this.options[idx].value = value;
  this.options[idx].innerText = innerText;
  this.syncOptions();
  this.syncSelectedIndex();
}

function SS_insertOption1 (obj, value, innerText, idx)
{
  var NewOption = document.createElement("OPTION");
  SS_CreatedElements[SS_CreatedElements.length] = NewOption;
  obj.options.add(NewOption, idx);
  NewOption.innerText = innerText;
  NewOption.value = value;

  if (!obj.bOriginalSelect)
    obj.createOptionTr(idx);

  obj.syncOptions();
  obj.adjustOptionsDiv();
  obj.syncSelectedIndex();
}


function SS_changeOption1 (obj, idx, value, innerText)
{
  obj.options[idx].value = value;
  obj.options[idx].innerText = innerText;
  obj.syncOptions();
  obj.syncSelectedIndex();
}

function SS_deleteOption1 (obj, idx)
{
  obj.options.remove(idx);
  if (!obj.bOriginalSelect)
    obj.OptionsTable.deleteRow(idx);
  obj.syncOptions();
  obj.adjustOptionsDiv();
  obj.syncSelectedIndex();
}


function SS_cancelEvent (event)
{
  event.cancelBubble = true;
  event.returnValue = false;
}
function SS_isThisEventToBeCanceled (event)
{
  if ('object' == typeof(event)) {
    switch (event.type) {
      case 'mousedown':
        if (!(event.button & 1)) return true;
        break;
      case 'mouseup':
        if (!(event.button & 1)) return true;
        if (SS_ENV.IE_Version >= 5.5 && event.srcElement != this.srcElementOfLastMousedown && this.srcElementOfLastMousedown != null) {
          this.srcElementOfLastMousedown = null;
          return true;
        }
        break;
      case 'mouseout':
        if (!(SS_ENV.IE_Version < 5.5 && event.srcElement == this.srcElementOfLastMousedown))
          return true;
        break;
      case 'mousemove':
        if (SS_ENV.IE_Version >= 5.5 && event.srcElement != this.srcElementOfLastMousedown && this.srcElementOfLastMousedown != null)
          return true;
        break;
    }
  }
  return false;
}
function SS_createElement (html)
{
  SS_VAR.DivDummy.insertAdjacentHTML('afterBegin', html);
  var oEl = SS_VAR.DivDummy.children(0);
  while (SS_VAR.DivDummy.children.length > 0) {
    SS_VAR.DivDummy.removeChild(SS_VAR.DivDummy.children(0));
  }
  return oEl;
}
function SS_blurExcept (except)
{
  SS_cancelEvent(window.event);

  except = ('number'==typeof(except)) ? except : -1;

  var bHasToDetachEvent = true;
  for (var i=0; i < SS_VAR.SelectList.length; i++) {
    if (-1==except && SS_VAR.SelectList[i].bFocused && SS_VAR.SelectList[i].bExpanded) {
      SS_VAR.SelectList[i].toggleOptions(false, true);
      SS_VAR.SelectList[i].toggleTitle(true);
      bHasToDetachEvent = false;
    }
    else if (i!=except) {
      if (SS_VAR.SelectList[i].bExpanded)
        SS_VAR.SelectList[i].toggleOptions(false, true);
      if (SS_VAR.SelectList[i].bReverse)
        SS_VAR.SelectList[i].toggleTitle(false);
      SS_VAR.SelectList[i].bFocused = false;
    }
  }

  if (SS_VAR.bEventAttached && bHasToDetachEvent) {
    document.detachEvent('onmousedown', SS_blurExcept);
    document.detachEvent('ondblclick', SS_blurExcept);
    SS_VAR.bEventAttached = false;
  }
}
function SS_syncSelectedIndex ()
{
  this.selectedIndex = this.select.selectedIndex;

  if (this.bOriginalSelect) return;

  if (this.TitleTable.cells(0).childNodes(0).innerText != this.options[this.selectedIndex].innerText)
    this.TitleTable.cells(0).childNodes(0).innerText = this.options[this.selectedIndex].innerText;
  if (this.bExpanded)
    this.toggleOptions(false);
}
function SS_syncSelectedIndex1 (obj)
{
  obj.selectedIndex = obj.select.selectedIndex;

  if (obj.bOriginalSelect) return;

  if (obj.TitleTable.cells(0).childNodes(0).innerText != obj.options[obj.selectedIndex].innerText)
    obj.TitleTable.cells(0).childNodes(0).innerText = obj.options[obj.selectedIndex].innerText;
  if (obj.bExpanded)
    obj.toggleOptions(false);
}
function SS_toggleTitle (bReverse)
{
  this.bReverse = ('undefined'!=typeof(bReverse)) ? bReverse: (!this.bReverse);
  this.TitleTable.cells(0).style.backgroundColor = this.bReverse ? SS_ENV.CR.ReverseBackground : '';
  this.TitleTable.cells(0).style.color = this.bReverse ? SS_ENV.CR.ReverseText : ''+ ';
}
function SS_toggleOptions (bExpanded, bStrict)
{
  if (!bStrict && !this.bFocused) {
    SS_blurExcept(this.ssID);
  }
  this.bExpanded = ('undefined'!=typeof(bExpanded)) ? bExpanded: (!this.bExpanded);
  if (this.bExpanded) {
    this.adjustOptionsDiv();
    this.OptionsDiv.style.display = 'block';
    if (!bStrict) {
      this.toggleTitle(false);
      this.handleOverOption(this.selectedIndex);
    }
    this.handleOutTitle();
  }
  else {
    this.OptionsDiv.style.display = 'none';
    if (!bStrict) {
      this.toggleTitle(true);
    }
  }
  if (!bStrict) {
    this.bFocused = true;

    if (!SS_VAR.bEventAttached) {
      document.attachEvent('onmousedown', SS_blurExcept);
      document.attachEvent('ondblclick', SS_blurExcept);
      SS_VAR.bEventAttached = true;
    }
  }
}
function SS_handlePropertychange ()
{
  if ('propertychange'==window.event.type && 'selectedIndex'+ '==window.event.propertyName) {
    var oSS = window.event.srcElement.SS;
    oSS.syncSelectedIndex();

    if (null != oSS.select.onchange)
      oSS.select.onchange();
  }
}
function SS_handleMousewheel (event)
{
  var idx = this.selectedIndex;
  if ('mousewheel'==event.type && this.bFocused && this.bReverse) {
    for (var i=0; i < event.wheelDelta; i += 120)
      idx--;
    for (var i=0; i > event.wheelDelta; i -= 120)
      idx++;
  }
  idx = Math.max(idx, 0);
  idx = Math.min(idx, this.options.length - 1);
  this.select.selectedIndex = idx;
}
function SS_handleOverTitle ()
{
  if (this.bExpanded)
    return;

  this.TitleTable.style.borderColor = SS_ENV.CR.BorderActive;
  this.TitleTable.cells(1).style.display = 'none';
  this.TitleTable.cells(2).style.display = 'block';
}
function SS_handleOutTitle ()
{
  this.TitleTable.style.borderColor = SS_ENV.CR.Border;
  this.TitleTable.cells(2).style.display = 'none';
  this.TitleTable.cells(1).style.display = 'block';
}
function SS_handleOverOption (idx)
{
  for (var i=0; i < this.options.length; i++) {
    if (i==idx)
      this.turnOnOption(i);
    else
      this.turnOffOption(i);
  }
}
function SS_turnOnOption (idx)
{
  this.OptionsTable.cells(idx).style.color = SS_ENV.CR.ReverseText;
  this.OptionsTable.cells(idx).style.backgroundColor = SS_ENV.CR.ReverseBackground;
}
function SS_turnOffOption (idx)
{
  this.OptionsTable.cells(idx).style.color = '';
  this.OptionsTable.cells(idx).style.backgroundColor = '';
}
function SS_adjustOptionsDiv ()
{
  if (this.bOriginalSelect) return;

  this.OptionsDiv.style.width = this.width;
  this.OptionsDiv.style.height = Math.min(this.options.length, this.ListMax) * this.OptionHeight ;
  this.OptionsWrapper.style.height = this.options.length * this.OptionHeight;
  this.OptionsDiv.style.overflowY = (this.options.length > this.ListMax) ? 'scroll' : '';

  var top = this.Table.offsetTop;
  var left = this.Table.offsetLeft;
  for (var El = this.Table.offsetParent; 'BODY'!=El.tagName && 'absolute'!=El.style.position && 'relative'!=El.style.position; El = El.offsetParent) {
    if ('TABLE' != El.tagName) {
      top += El.clientTop;
      left += El.clientLeft;
    }
    top += El.offsetTop;
    left += El.offsetLeft;
  }
  this.OptionsDiv.style.top = (this.bListDown) ? (top + this.height) : (top - parseInt(this.OptionsDiv.style.height));
  this.OptionsDiv.style.left = left;

  this.TitleWrapper.style.top = 0;
  this.TitleWrapper.style.left = 0;
}
function SS_syncOptions ()
{
  if (this.bOriginalSelect) return;

  for (var i=0; i < this.options.length; i++) {
    this.OptionsTable.cells(i).setAttribute('index', i);
    if (this.OptionsTable.cells(i).childNodes(0).innerText != this.options[i].innerText)
      this.OptionsTable.cells(i).childNodes(0).innerText = this.options[i].innerText;
  }
}
function SS_pressTitle (event)
{
  SS_cancelEvent(event);

  this.srcElementOfLastMousedown = event.srcElement;

  this.toggleOptions();
}
function SS_releaseTitle (event)
{
  SS_cancelEvent(event);

  if (this.isThisEventToBeCanceled(event)) return;

  this.srcElementOfLastMousedown = null;
}
function SS_pressOption (event)
{
  SS_cancelEvent(event);

  this.srcElementOfLastMousedown = event.srcElement;
}
function SS_moveOption (event)
{
  SS_cancelEvent(event);

  if (this.isThisEventToBeCanceled(event)) return;
  if (!(event.offsetX >= 0 && event.offsetX <= this.OptionsTable.offsetWidth)) return;

  this.handleOverOption(Math.floor(event.offsetY / this.OptionHeight));
}
function SS_releaseOption (event)
{
  SS_cancelEvent(event);

  if (this.isThisEventToBeCanceled(event)) return;

  this.srcElementOfLastMousedown = null;

  if (event.offsetX >= 0 && event.offsetX <= this.OptionsTable.offsetWidth) {
    this.toggleOptions(false);
    this.select.selectedIndex = Math.floor(event.offsetY / this.OptionHeight);
  }
}
function SS_createTable ()
{
  this.Table = SS_createElement(""
    + "<table border=0 cellpadding=0 cellspacing=0 style='table-layout:fixed; "+SS_ENV.MouseStyle+"'>"
    + "<tr><td></td></tr>"
    + "</table>"
  );
  if (!isNaN(this.width))
    this.Table.style.width = this.width;
  this.Table.style.height = this.height;

  if (!this.bOriginalSelect) {
    this.createTitleDiv();
    this.createOptionsDiv();
    this.Table.cells(0).appendChild(this.TitleDiv);
    this.Table.cells(0).appendChild(this.OptionsDiv);
  }
  else {
    this.Table.cells(0).appendChild(this.select);
  }
}
function SS_createTitleDiv ()
{
  this.TitleDiv = SS_createElement(""
    + "
"
    + "  <table border=0 cellpadding=0 cellspacing=0"
    + "    height="+this.height
    + "    bgcolor=F1F1F1"
    + "    style='table-layout:fixed; border:1 solid "+SS_ENV.CR.Border+";'"
    + "    onmouseover='SS_VAR.SelectList["+this.ssID+"].adjustOptionsDiv()'"
    + "  >"
    + "  <tr>"
    + "    <td><nobr style='text-oveflow:hidden;"+SS_ENV.OptionNobrStyle+"'></nobr></td>"
    + "    <td width="+SS_ENV.ButtonWidth+" align=center style='word-wrap:normal'></td>"
    + "    <td style='display:none' width="+SS_ENV.ButtonWidth+" align=center style='word-wrap:normal'></td>"
    + "    <td style='display:none'+ '></td>"
    + "  </tr>"
    + "  </table>"
    + "
"
  );
  this.TitleTable = this.TitleDiv.childNodes(0);
  this.TitleTable.cells(0).childNodes(0).innerText = this.options[this.selectedIndex].innerText;
  this.TitleTable.cells(1).innerHTML = "";
  this.TitleTable.cells(2).innerHTML = "";
  this.TitleTable.cells(3).appendChild(this.select);
  this.TitleWrapper = document.createElement(""
    + "    + "  style='position:absolute; top:0; left:0; z-index:2; width:100%; height:"+this.height+";'"
    + "  onmouseover='SS_VAR.SelectList["+this.ssID+"].handleOverTitle()'"
    + "  onmouseout='SS_VAR.SelectList["+this.ssID+"].handleOutTitle(); SS_VAR.SelectList["+this.ssID+"].releaseTitle(window.event);'"
    + "  onmousedown='SS_VAR.SelectList["+this.ssID+"].pressTitle(window.event)'"
    + "  ondblclick='SS_VAR.SelectList["+this.ssID+"].pressTitle(window.event); SS_VAR.SelectList["+this.ssID+"].releaseTitle(window.event);'"
    + "  onmouseup='SS_VAR.SelectList["+this.ssID+"].releaseTitle(window.event)'"
    + "  onmousewheel='SS_VAR.SelectList["+this.ssID+"].handleMousewheel(window.event)'"
    + "  ondragstart='SS_cancelEvent(window.event)'"
    + ">"
  );
  SS_CreatedElements[SS_CreatedElements.length] = this.TitleWrapper;
  this.TitleDiv.appendChild(this.TitleWrapper);
}
function SS_createOptionsDiv ()
{
  this.OptionsDiv = SS_createElement(""
    + "
    + "  onscroll='SS_VAR.SelectList["+this.ssID+"].moveOption(window.event)'"
    + "  onmousedown='SS_cancelEvent(window.event)'"
    + ">"
    + "  <table border=0 cellpadding=3 cellspacing=0 width=100% style='table-layout:fixed'>"
    + "  </table>"
    + "
"
  );
  this.OptionsTable = this.OptionsDiv.childNodes(0);
  for (var i=0; i < this.options.length; i++) {
    this.createOptionTr(i);
  }
  this.syncOptions();
  this.OptionsWrapper = document.createElement(""
        + "    + "  style='position:absolute; top:0; left:0; width:100%;'"
    + "  onmousedown='SS_VAR.SelectList["+this.ssID+"].pressOption(window.event)'"
    + "  onmousemove='SS_VAR.SelectList["+this.ssID+"].moveOption(window.event)'"
    + "  onmouseup='SS_VAR.SelectList["+this.ssID+"].releaseOption(window.event)'"
    + "  onmouseout='SS_VAR.SelectList["+this.ssID+"].releaseOption(window.event)'"
    + "  ondragstart='SS_cancelEvent(window.event)'"
    + ">"
  );
  SS_CreatedElements[SS_CreatedElements.length] = this.OptionsWrapper;
  this.OptionsDiv.appendChild(this.OptionsWrapper);
}
function SS_createOptionTr (idx)
{
  idx = ('undefined'!=typeof(idx)) ? idx : this.options.length - 1;
  var OptionTr = this.OptionsTable.insertRow(-1);
  var OptionTd = document.createElement("<td height="+this.OptionHeight+"></td>");
  SS_CreatedElements[SS_CreatedElements.length] = this.OptionsTd;
  OptionTd.appendChild(document.createElement("<nobr style='"+SS_ENV.OptionNobrStyle+"'></nobr>"));
  OptionTr.appendChild(OptionTd);
}



function sectionChange(form)
{
        var idx_office = SS_office.selectedIndex;
        var office_section = section_list[idx_office];
        var tmp, i, len;

        len = SS_section.options.length;

        for (i = office_section.length - 1; i >= 0; i--) {
                tmp = office_section[i].split(",");
                SS_section.insertOption(tmp[1], tmp[0], 0);
        }

        offset = office_section.length;
        for (i = office_section.length; i < office_section.length + len; i++) {
                SS_section.deleteOption(offset);
        }
}
      //-->
   <script language="JavaScript" type="text/JavaScript">
      <!--
         function goto_new(form) {
            var windowprops = "";
            var URL = form.go.options[form.go.selectedIndex].value;
               if (URL != "" && URL != null){
            popup = window.open(URL,'',windowprops);
            }
         }
      //-->
</script>

   <body>
      <table  width="870" border="0" cellspacing="0" cellpadding="0" >
         <tr>
            <td height="6" background="../images/db/under/under_bg_1.gif"></td>
         </tr>
         <tr>
            <td height="56" background="../images/db/under/under_bg_2.gif">
               <table  width="100%" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                     <td width="482">
                        <table  width="100%" border="0" cellspacing="0" cellpadding="0">
                           <tr>
                              <td></td>
                              <td></td>
                              <td width="41"></td>
                           </tr>
                        </table>
                     </td>
                     <td width="217">
                        <table  width="100%" border="0" cellspacing="0" cellpadding="0">
                           <tr>
                              <td></td>
                              <td></td>
                              <td></td>
                              <td></td>
                              <td width="13"></td>
                           </tr>
                        </table>
                     </td>
                     <td width="170">
                        <table  width="100%" border="0" cellspacing="0" cellpadding="0">
                           <tr>
                              <form name="myform2">
                              <td>
                                    <script>
                                    var strCombo = ""
                                    + "<select name='go' style='width:150;  eight:19;'onChange='goto_new(this.form)'>"
                                    + "<option> ::  000::::::::::::::::::</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='+ 'http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='+ 'http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'+ '>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>000</option>"
                                    + "<option value='http://daum.net'>00</option>"
                                    + "</select>";
                                    SS_write(strCombo, 24);
                                 </script>
                                </td>
                                </form>
                               <td width="20"></td>
                           </tr>
                           <tr>
                              <td height="3"></td>
                           </tr>
                          <tr>
                              <form name="myform">
                              <td>
                                 <script>
                                    var strCombo = ""
                                    + "<select name='go' style='width:150;  eight:19;' onChange='goto_new(this.form)'>"
                                    + "<option> ::   홈페이지 ::::::</option>"
                                    + "<option value='+ 'http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value=''>--------------------------------</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value=''>--------------------------------</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value=''>--------------------------------</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='+ 'http://www.daum.net">000</option>"
                                    + "<option value=''>--------------------------------</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "<option value='http://www.daum.net">000</option>"
                                    + "</select>";
                                    SS_write(strCombo, 24);
                                 </script>
                              </td>
                              </form>
                              <td></td>
                           </tr>
                        </table>
                     </td>
                  </tr>
               </table>
            </td>
         </tr>
         <tr>
            <td height="6" background="../images/db/under/under_bg_3.gif" ></td>
         </tr>
      </table>
      
      <table  width="870" border="0" cellspacing="0" cellpadding="0" >
         <tr>
            <td height="20"></td>
         </tr>
      </table>
      
      </html>
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
이연호 폼메일을 만들었는데, 파일첨부기능은 어떻게 하는건지 모르겟네요ㅠㅠ  
alal 퀵메뉴 설치하는데.. 잘 안되네요.  
우디 html링크와 인클루드...그림저장... [2] 2007.08.10
정식 로그인 해야만 페이지에 접속할수 있고 절대경로 홈페이지 접속에 관한 질문 [2] 2007.08.10
김선경 셀렉트박스 목록을 위쪽방향으로  
윤동혁 질문좀 할꼐요... [1] 2007.08.10
울혼 클라이언트에게 작업물(홈피) 넘겨줄때요..  
우디 인클루드 정말 궁금한데요... [1] 2007.08.10
정지웅 플래쉬에서 다이나믹 텍스트로 폰트 첨부(임베디드) 해도, 영문만 나옵니다.  
윤영미 포토샵 레이어 팔래트에서 하단 연결고리 없애는방법좀ㅜ.ㅜ  
오타대마왕 PHP로 적분을 해야 하는데....  
Aerou 몇초간격으로 자동으로 링크클릭  
이주현 제로보드 정렬 방법 문의 [1] 2007.08.10
토리 쇼핑몰에 사용되는 장바구니 로그인폼 등등 [1] 2007.08.10
나야나 php 배우고 싶은 초보입니다... [1] 2007.08.10
peace 모니터링  
요요 사이트 위아래로 슬라이딩되는 이미지나 메뉴 [1] 2007.08.10
‡다윈‡ 홈페이지 접속할때 마다.. [1] 2007.08.10
kiss119s 포토샵 페인트통툴에서 테두리가 선명하지 않아요- [1] 2007.08.10
이재민 횽아들 저 아주 급한 질문이 있는데요.... [2] 2007.08.10
이슬기 ★급! 인덱스 화면에 이미지가 않떠요 [1] 2007.08.10
축구와사람들 플래시 타겟 지점 좀 알려주세요 [1] 2007.08.10
miyo bgm 이 나오질 않네요. 뭐가 잘못된건지 좀 봐주세요.  
로보로보 링크한 파일의 주소가 mp3 일때 실행안되고 다운로드 받게 하는방법!  
완규 자바스크립트에서 변수 선언할 때요..  
완규 프레임셋을 만들때..이렇게 해도 문제 없을까요? [1] 2007.08.10
goa 그라데이션  
우라질넘 외부로그인 응용... [1] 2007.08.10
유영민 프로그래밍배우는 초보입니다~고수분들꼭좀 부탁드립니다. [1] 2007.08.10
최정욱 노프레임 사이트 만들기 질문요ㅠ.ㅠ [1] 2007.08.10