/*
create by carl
example:
<input onkeyup="jsAutoInstance.handleEvent(this,'GetCompletionList',event)" name="actors" type="text" runat="server" id="txtType"/>
<div id="divDisp" class="divDisp"></div>
<script language="JavaScript" type="text/javascript">
var jsAutoInstance = new jsAuto("jsAutoInstance","divDisp");
</script>
*/

function jsAuto(instanceName,objID)
{
    this._msg = [];
    this._x = null;
    this._o = document.getElementById( objID );
    if (!this._o) return;
    this._f = null;
    this._i = instanceName;
    this._r = null;
    this._c = 0;
    this._s = false;
    this._v = null;
    this._o.style.visibility = "hidden";
    this._o.style.position = "absolute";
    this._o.style.zIndex = "9999";
this._o.style.overflow = "hidden";
this._o.style.height = "100";
    return this;
};

jsAuto.prototype.directionKey=function() { with (this)
{
    var e = _e.keyCode ? _e.keyCode : _e.which;
    var l = _o.childNodes.length;
    (_c>l-1 || _c<0) ? _s=false : "";

    if( e==40 && _s )
    {
        _o.childNodes[_c].className="mouseout";
        (_c >= l-1) ? _c=0 : _c ++;
        _o.childNodes[_c].className="mouseover";
        var value = _o.childNodes[_c].innerHTML;
    }
    if( e==38 && _s )
    {
        _o.childNodes[_c].className="mouseout";
        _c--<=0 ? _c = _o.childNodes.length-1 : "";
        _o.childNodes[_c].className="mouseover";
    }
    if( e==13 )
    {
        if(_o.childNodes[_c] && _o.style.visibility=="visible")
        {
            _r.value = _x[_c];
            _o.style.visibility = "hidden";
        }
    }
    if( !_s )
    {
        _c = 0;
        _o.childNodes[_c].className="mouseover";
        _s = true;
    }
}};

// mouseEvent.
jsAuto.prototype.domouseover=function(obj) { with (this)
{
    _o.childNodes[_c].className = "mouseout";
    _c = 0;
    obj.tagName=="DIV" ? obj.className="mouseover" : obj.parentElement.className="mouseover";
}};
jsAuto.prototype.domouseout=function(obj)
{
    obj.tagName=="DIV" ? obj.className="mouseout" : obj.parentElement.className="mouseout";
};
jsAuto.prototype.doclick=function(msg) { with (this)
{

    if(_r)
    {
        _r.value = msg;
        _o.style.visibility = "hidden";
    }
    else
    {
        alert("javascript autocomplete ERROR :\n\n can not get return object.");
        return;
    }
}};

// object method;
jsAuto.prototype.item=function(msg)
{
    if( msg.indexOf(",")>0 )
    {
        var arrMsg=msg.split(",");
        for(var i=0; i<arrMsg.length; i++)
        {
            arrMsg[i] ? this._msg.push(arrMsg[i]) : "";
        }
    }
    else
    {
        this._msg.push(msg);
    }
    this._msg.sort();
};
jsAuto.prototype.append=function(msg) { with (this)
{
    _i ? "" : _i = eval(_i);
    _x.push(msg);
    var div = document.createElement("DIV");

    //bind event to object.
    div.onmouseover = function(){_i.domouseover(this)};
    div.onmouseout = function(){_i.domouseout(this)};
    div.onclick = function(){_i.doclick(msg)};
    var re  = new RegExp("(" + _v + ")","i");
    div.style.lineHeight="140%";
    div.className = "mouseout";
    if (_v) div.innerHTML = msg.replace(re , "<strong>&nbsp;$1</strong>");
    div.style.fontFamily = "Tahoma,Verdana,Helvetica";
    _o.appendChild(div);
}};
function CPos(x, y)
{
    this.x = x;
    this.y = y;
}

jsAuto.prototype.display=function() { with(this)
{
    var target = _r;
    var pos = new CPos(target.offsetLeft, target.offsetTop);
    var target = target.offsetParent;
    while (target)
    {
        pos.x += target.offsetLeft;
        pos.y += target.offsetTop;
        
        target = target.offsetParent
    }

    if(_f&&_v!="")
    {
    //modif by Louis
//        _o.style.left = pos.x;
//        // _o.style.width = _r.offsetWidth;
//        _o.style.top = pos.y + _r.offsetHeight;
        _o.style.height=_r.offsetHeight*(_o.childNodes.length+1);
        _o.style.visibility = "visible";
        if (window.navigator.userAgent.indexOf("MSIE")<1)
       {
           _o.style.marginTop="25px";
           _o.style.marginLeft="6px";
       }
    }
    else
    {
        _o.style.visibility="hidden";
    }
}};
jsAuto.prototype.handleEvent=function(fID,method,event,prod_stype) { with (this)
{
   if(event.keyCode!=8 && fID.value.length<3)
      return;
    
    var re;
    _e = event;
    var e = _e.keyCode ? _e.keyCode : _e.which;
    _x = [];
    _f = false;
    _r = fID;
    _v = fID.value;
    _o.innerHTML="";
    _i = eval(_i);
    
   _msg.clear();
   var strDL = "";
   if(prod_stype==undefined)
   {
        strDL="proxies.ProxyService."+method+"('"+fID.value+"')";
   }
   else
   {
        if(prod_stype=="MEM")
        { 
            strDL="proxies.ProxyService."+method+"('"+fID.value+"')";
        }
        else
        {
            strDL="proxies.ProxyService."+method+"('"+fID.value+"','"+prod_stype+"')";
        } 
   }
   
   var curValue=eval(strDL);
   _i.item(curValue);
 
    re = new RegExp("^" + fID.value + "", "i");
    for(var i=0; i<_msg.length; i++)
    {
        if(re.test(_msg[i]))
        {
            _i.append(_msg[i]);
            _f = true;
        }
    }

    _i ? _i.display() : alert("can not get instance");

    if(_f)
    {
        if((e==38 || e==40 || e==13))
        {
            _i.directionKey();
        }
        else
        {
            _c=0;
            _o.childNodes[_c].className = "mouseover";
            _s=true;
        }
    }
}};


window.onerror=new Function("return true;");



document.onclick = function(evt){
	evt = evt || window.event;
	elem = evt.srcElement || evt.target;
	try{
	 
	 if(elem.id !="divShowActors" && elem.id !=$(CTRL_txtType_ID).id)
	 {
	   $('divDisp').style.visibility="hidden";
	 }
	 }catch(e){} 
}


