<!--//--><![CDATA[//><!--
// < SCRIPT TYPE="text/javascript" >


























































































































var isIE = null;
function upd1(){ 
 isIE = (window.navigator.userAgent.indexOf("MSIE") > 0);
 if(!isIE){ 
  HTMLElement.prototype.__defineGetter__("innerText",
   function(){ if(this.textContent){ return(this.textContent); }
    else{ var r=this.ownerDocument.createRange(); r.selectNodeContents(this);return r.toString(); } });
  HTMLElement.prototype.__defineSetter__("innerText",
   function(txt){ if(this.textContent){ this.textContent = txt; }
    else{ this.innerHTML = txt; } });
 }
 String.prototype.trim = function(){ return this.replace(/^\s\s*/,'').replace(/\s\s*$/,''); }
 String.prototype.removeSSP = function(){ var st = '';  var s = new Array(23);  s[0] = null;
  /* &shy;=\u00AD=&#xAD;=&#173; , ZWSP=\u200B=&#x200B;=&#8203; , ZWNBSP=&#xFEFF;=&#65279; */
  s[1]  = '/\xAD\x20\r\n/g';
  s[2]  = '/\xAD\x20\n\r/g';
  s[3]  = '/\xAD\x20\n/g';
  s[4]  = '/\xAD\x20\r/g';
  s[5]  = '/\xAD \n/g';
  s[6]  = '/\xAD \r/g';
  s[7]  = '/\xAD\x20/g';
  s[8]  = '/\xAD /g';
  s[9]  = '/\xAD\n/g';
  s[10] = '/\xAD\r/g';
  s[11] = '/\xAD/g';
  s[12] = '/\u200B\x20\r\n/g';
  s[13] = '/\u200B\x20\n\r/g';
  s[14] = '/\u200B\x20\n/g';
  s[15] = '/\u200B\x20\r/g';
  s[16] = '/\u200B \n/g';
  s[17] = '/\u200B \r/g';
  s[18] = '/\u200B\x20/g';
  s[19] = '/\u200B /g';
  s[20] = '/\u200B\n/g';
  s[21] = '/\u200B\r/g';
  s[22] = '/\u200B/g';
  st = String(this);
  for(var i=1;i<23;i++){
   st = st.replace(s[i],'');
  }
  return st;
 }
}
function getElmById(ElmId){ 
 var elt = null;
 if(isMozilla || isIE5){ elt = document.getElementById(ElmId); }
 else if(isNetscape4){ elt = document.layers[ElmId]; }
 else if(isIE4){ elt = document.all[ElmId]; }
 else{ elt = document.getElementById(ElmId); }
 return elt;
}
function css2jss(PrpNam){ 
 var sO = PrpNam;   var iP = 0;
 while(sO.indexOf("-") > -1){
  iP = sO.indexOf("-");
  sO = sO.substr(0,iP) + sO.substr(iP+1,1).toUpperCase() + sO.substr(iP+2);
 }
 return sO;
}
function getStyle(ElmIdgs,stylPrp,TE){ 
 var x = null;
 if(TE.toUpperCase()=="I"){ x = getElmById(ElmIdgs); }
 else if(TE.toUpperCase()=="E"){ x = ElmIdgs; }
 if(typeof x.currentStyle != 'undefined'){ return x.currentStyle[css2jss(stylPrp)]; }/*IE*/
 /* else if(window.getComputedStyle){ */
 else if(document.defaultView && document.defaultView.getComputedStyle){ 
  return document.defaultView.getComputedStyle(x,null).getPropertyValue(stylPrp); }/*Mz,Op*/
 else{ return "unavailable"; }
}
function setStyle(ElmIdss,stylPrp,stylVal,TE){ 
 var x = null;
 if(TE.toUpperCase()=="I"){ x = getElmById(ElmIdss); }
 else if(TE.toUpperCase()=="E"){ x = ElmIdss; }
 if(typeof x.currentStyle != 'undefined'){ var s = css2jss(stylPrp);   x.style.indexOf(s) = stylVal; }
 else if(document.defaultView && document.defaultView.getComputedStyle){ 
  x.style.indexOf(stylPrp) = stylVal; }
}
function at(ST){ return ST.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); }
var SP = '/\xAD/g';






function WrapWords(){ 
 var elt = document.body.getElementsByTagName("*");
 if(navigator.appName.indexOf("Internet Explorer") > -1){
  for(var iL=0; iL<elt.length; iL++){
   if(elt[iL].className.indexOf("word-wrap") > -1){
    elt[iL].style.wordWrap = "break-word";
   }
  }
 }else{
  for(var iL=0; iL<elt.length; iL++){
   if(elt[iL].className.indexOf("word-wrap") > -1){
    wrapLword(elt[iL],'C');
   }
  }
 }
}






function RGBtoHex1(R,G,B){return toHex1(R)+toHex1(G)+toHex1(B);}
function toHex1(N){ if(N==null)return "00";
 N=parseInt(N);  if (N==0 || isNaN(N)) return "00";
 N=Math.max(0,N);  N=Math.min(N,255);  N=Math.round(N);
 return "0123456789ABCDEF".charAt((N-N%16)/16)+"0123456789ABCDEF".charAt(N%16);
}


R2 = HexToR2("#FFFFFF");  G2 = HexToG2("#FFFFFF");  B2 = HexToB2("#FFFFFF");
function HexToR2(h){return parseInt((pickHex2(h)).substring(0,2),16);}
function HexToG2(h){return parseInt((pickHex2(h)).substring(2,4),16);}
function HexToB2(h){return parseInt((pickHex2(h)).substring(4,6),16);}
function pickHex2(h){return (h.charAt(0)=="#")?h.substring(1,7):h;}


function d2h3(N){ 
 if(N==null){return "";}
 else{ var H3 = new Array();    var i = 0;
  while(N > 15){ H3[i] = gH3(N);   N = Math.floor(N / 16);   i+=1;}
  H3[i] = gH3(N);    var H32 = "";
  for(i=H3.length-1; i>=0; i--){ H32 += H3[i];}
  return H32; 
 }
}
function h2d3(){ 
 with(document.hdo3){
  if(hex32.value==null){ dec32.value="";}
  else{ dec32.value=parseInt(hex32.value,16);
   if(dec32.value==0 || isNaN(dec32.value)) dec32.value="0";
   hex32.value=hex32.value.toUpperCase();
  }
 }
}
function gH3(D){
 var H33 = new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F");
 var N32 = Math.floor(D / 16);   var N33 = D - N32 * 16;   var H34 = H33[N33];
 return (H34);
} 




var gD4 = null;
function c2de42(he){ 
 var h = null;
 h = pc4(he);
 /*return gD4.innerHTML.charCodeAt(0); */
 return h.charCodeAt(0);
}
function c2hxe42(he){ 
 var h = null;
 h = pc4(he);
 /*return gD4.innerHTML.charCodeAt(0).toString(16).toUpperCase();*/
 return h.charCodeAt(0).toString(16).toUpperCase();
}
function pc4(he){ 
 if(!gD4) gD4 = document.createElement('DIV');  gD4.innerHTML = he;
 if(typeof gD4.innerText != 'undefined'){return gD4.innerText;}
 else if(typeof gD4.textContent != 'undefined'){return gD4.textContent;}
 else if(typeof gD4.innerHTML != 'undefined'){return gD4.innerHTML;}
 else if(typeof gD4.ownerDocument != 'undefined' && typeof gD4.ownerDocument.createRange != 'undefined'){
  var r4 = gD4.ownerDocument.createRange();  r4.selectNodeContents(gD4);  return r4.toString();}
}


function u2df5(US){ 
  var r5 = '';   var i5 = 0;
  for (i5=0; i5<US.length; i5++) r5 += '&#' + US.charCodeAt(i5) + ';'; 
  /* return us.replace (/&/g, "&amp;"); */
  return r5;
}
function u2hf5(US){ 
  var r5 = '';  var i5 = 0;
  for (i5=0; i5<US.length; i5++) 
    r5 += '&#x' + US.charCodeAt(i5).toString(16).toUpperCase() + ';'; 
  /* return us.replace (/&/g, "&amp;"); */
  return r5;
}
function pc5(ne){ 
 return pc4(ne);
}
function lf51(){
 with(document.u2hd51){
  setStyle("c5","font-family",fn51.value,"i");
  setStyle("c51","font-family",fn51.value,"i");
  setStyle("c52","font-family",fn51.value,"i");
 }
}
function lf52(){
 //var ff= new Array(2);  ff[0] = 'fontFamily';  ff[1] = 'font-family';
 //var i = 0;  var x = document.getElementById(Elm);
 //with(document.u2hd53){
 // for (i; i<2; i++){
 //  c53.style.ff[i] = fn52.value;  c54.style.ff[i] = fn52.value;  c55.style.ff[i] = fn52.value;
 // }
 //}
 with(document.u2hd53){
  setStyle("c53","font-family",fn52.value,"i");
  setStyle("c54","font-family",fn52.value,"i");
  setStyle("c55","font-family",fn52.value,"i");
 }
}



var NR = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_.~";
var RV = "!*'();:@&=+$,/?%#[]";  var VV = NR + RV;  var HC = "0123456789ABCDEFabcdef";
function gh6(d){
 return "%" + HC.charAt(d >> 4) + HC.charAt(d & 0xF);
}
function enc(F){
 var O61 = "";   var O62 = "";   var I6 = "";   var UA = 0;
 if(F == 'U1'){ /* uni2urle */
  with(document.uni2url61){
   I6 = unt62.value.removeSSP();
   if(ce61.value == "ascii") UA = 1;
   else UA = 2;
  }
 }
 if(F == 'D1'){ /* urld2urle&uni */
  with(document.uni2url61){
   I6 = dec62.value.removeSSP();
   if(ce62.value == "ascii") UA = 1;
   else UA = 2;
  }
 }
 if(UA == 1){ /* ASCII */
  var na = "";
  for(var i = 0; i < I6.length; i++ ){
   var ch = I6.charAt(i);
   if(NR.indexOf(ch) != -1){ O61 = O61 + ch; }
   else{
    var cc = I6.charCodeAt(i);
    if(cc < 128){ O61 = O61 + gh6(cc); }
    else{ O61 = O61 + ch;  na = na + ch + " "; }
   }
  }
  if(F == 'U1'){ /* uni2urle */
   with(document.uni2url61){
    enc61.value = O61;   enc62.value = O61;   ce63.value = "ascii";
   }
  }
  if(F == 'D1'){ /* urld2urle&uni */
   with(document.uni2url61){
    enc61.value = O61;   enc62.value = O61;   ce63.value = "ascii";
    O62 = dec62.value.removeSSP();
    unt61.value = O62;   unt62.value = O62;   ce61.value = "ascii";
   }
  }
  if(na != "") alert("Warning: Following Non-ASCII characters in decoded box!\n\nThus, these characters have not been encoded :\n" + na);
 }
 if(UA == 2){ /* utf8 */
  for(var i = 0; i < I6.length; i++ ){
   var ch = I6.charAt(i);
   if(NR.indexOf(ch) != -1){ O61 = O61 + ch; }
   else{
    var cc = I6.charCodeAt(i);
    if(cc < 128){ O61 = O61 + gh6(cc); }
    if(cc > 127 && cc < 2048){
     O61 = O61 + gh6((cc >> 6) | 0xC0);  O61 = O61 + gh6((cc & 0x3F) | 0x80);
    }
    if(cc > 2047 && cc < 65536){
     O61 = O61 + gh6((cc >> 12) | 0xE0);  O61 = O61 + gh6(((cc >> 6) & 0x3F) | 0x80);
     O61 = O61 + gh6((cc & 0x3F) | 0x80);
    }
    if(cc > 65535){
     O61 = O61 + gh6((cc >> 18) | 0xF0);  O61 = O61 + gh6(((cc >> 12) & 0x3F) | 0x80);
     O61 = O61 + gh6(((cc >> 6) & 0x3F) | 0x80);  O61 = O61 + gh6((cc & 0x3F) | 0x80);
    }
   }
  }
  if(F == 'U1'){ /* uni2urle */
   with(document.uni2url61){
    enc61.value = O61;   enc62.value = O61;   ce63.value = "utf8";
   }
  }
  if(F == 'D1'){ /* urld2urle&uni */
   with(document.uni2url61){
    enc61.value = O61;   enc62.value = O61;   ce63.value = "utf8";
    O62 = dec62.value.removeSSP();
    unt61.value = O62;   unt62.value = O62;   ce61.value = "utf8";
   }
  }
 }
}
function gd6(he6){
 if(he6.length == 3){
  if(he6.charAt(0) == "%"){
   if(HC.indexOf(he6.charAt(1)) != -1 && HC.indexOf(he6.charAt(2)) != -1){
    return parseInt(he6.substr(1,2),16);
   }
  }
 }
 return 256;
}
function dec(F){
 var O61 = "";   var O62 = "";   var I6 = "";   var UA = 0;    var i;
 if(F == 'U1'){ /* uni2urld */
  with(document.uni2url61){
   O62 = unt62.value.removeSSP();
   dec61.value = O62;   dec62.value = O62;
   if(ce61.value == "ascii") ce62.value = "ascii";
   else ce62.value = "utf8";
  }
 }
 if(F == 'E1'){ /* urle2urld&uni */
  with(document.uni2url61){
   I6 = enc62.value.removeSSP();
   if(ce63.value == "ascii") UA = 1;
   else UA = 2;
  }
 }
 var nl = "";
 var ilen = "";
 if(UA == 1){ /* ASCII */
  i = 0;
  while(i < I6.length){
   var ch = I6.charAt(i);
   if(ch == "%"){
    if(gd6(I6.substr(i,3)) < 128){ O61 = O61 + unescape(I6.substr(i,3)); }
    else{ O61 = O61 + I6.substr(i,3);  ilen = ilen + I6.substr(i,3) + " "; }
    i = i + 3;
   }else{
    if(VV.indexOf(ch) == -1) nl = nl + ch + " ";
    O61 = O61 + ch;
    i++;
   }
  }
  if(F == 'E1'){ /* urld2urle&uni */
   with(document.uni2url61){
	dec61.value = O61;   dec62.value = O61;   ce62.value = "ascii";
    O62 = dec62.value.removeSSP();
	unt61.value = O62;   unt62.value = O62;   ce61.value = "ascii";
   }
  }
  var w = "";
  if(nl != "") w = w + "Following Characters not allowed in a URL :\n" + nl + "\n\n";
  if(ilen != "") w = w + "Following Characters are Illegal percent-encoding (for ASCII) :\n" + ilen  + "\n\n";
  if(w != "") alert("Warning: Following Illegal characters/strings in encoded text!\n\n" + w);
 }
 if(UA == 2){ /* UTF-8 */
  var b1, b2, b3, b4 = 0;
  i = 0;
  while(i < I6.length){
   var ch = I6.charAt(i);
   if(ch == "%"){
    if(gd6(I6.substr(i,3)) < 255){
     b1 = gd6(I6.substr(i,3));   b2 = gd6(I6.substr(i+3,3));
     b3 = gd6(I6.substr(i+6,3));   b4 = gd6(I6.substr(i+9,3));
     if(b1 < 128){
      O61 = O61 + String.fromCharCode(b1);
      i = i + 3;
     }
     if(b1 > 127 && b1 < 192){
      O61 = O61 + I6.substr(i,3);   ilen = ilen + I6.substr(i,3) + " ";
      i = i + 3;
     }
     if(b1 > 191 && b1 < 224){
      if(b2 > 127 && b2 < 192){
       O61 = O61 + String.fromCharCode(((b1 & 0x1F) << 6) | (b2 & 0x3F));
      } else {
       O61 = O61 + I6.substr(i,6);   ilen = ilen + I6.substr(i,6) + " ";
      }
      i = i + 6;
     }
     if(b1 > 223 && b1 < 240){
      if(b2 > 127 && b2 < 192){
       if(b3 > 127 && b3 < 192){
        O61 = O61 + String.fromCharCode(((b1 & 0xF) << 12) | ((b2 & 0x3F) << 6) | (b3 & 0x3F));
       }else{
        O61 = O61 + I6.substr(i,9);   ilen = ilen + I6.substr(i,9) + " ";
       }
      }else{
       O61 = O61 + I6.substr(i,9);   ilen = ilen + I6.substr(i,9) + " ";
      }
      i = i + 9;
     }
     if(b1 > 239){
      if(b2 > 127 && b2 < 192){
       if(b3 > 127 && b3 < 192){
        if(b4 > 127 && b4 < 192){
         O61 = O61 + String.fromCharCode(((b1 & 0x7) << 18) | ((b2 & 0x3F) << 12) | ((b3 & 0x3F) << 6) | (b4 & 0x3F));
        }else{
         O61 = O61 + I6.substr(i,12);   ilen = ilen + I6.substr(i,12) + " ";
        }
       }else{
        O61 = O61 + I6.substr(i,12);   ilen = ilen + I6.substr(i,12) + " ";
       }
      }else{
       O61 = O61 + I6.substr(i,12);   ilen = ilen + I6.substr(i,12) + " ";
      }
      i = i + 12;
     }
    }else{
     O61 = O61 + I6.substr(i,3);   ilen = ilen + I6.substr(i,3) + " ";
     i = i + 3;
    }
   }else{
    if(VV.indexOf(ch) == -1) nl = nl + ch + " ";
    O61 = O61 + ch;
    i++;
   }
  }
  if(F == 'E1'){ /* urld2urle&uni */
   with(document.uni2url61){
    dec61.value = O61;   dec62.value = O61;   ce62.value = "utf8";
    O62 = dec62.value.removeSSP();
    unt61.value = O62;   unt62.value = O62;   ce61.value = "utf8";
   }
  }
  var w = "";
  if(nl != "") w = w + "Following Characters not allowed in a URL :\n" + nl + "\n\n";
  if(ilen != "") w = w + "Following Characters are Illegal percent-encoding (for UTF-8) :\n" + ilen  + "\n\n";
  if(w != "") alert("Warning: Following Illegal characters/strings in encoded text!\n\n" + w);
 }
}




//var SP2 = '\xA0\xA0\xA0';
function wrapLword(E,O){
 var i,lt,lc,qq,pq,lo,els,q,cl,t,tO,dO,oO,wO;
 var rL,t2,Ep,Ec,Ev,C2,sp3,r,fsO,fmO,dO2,oO2,wO2,lo2;
 var P = null, B = 0; // , sp2 = '\xA0\xA0\xA0';

if(O=='U1' || O=='D1' || O=='E1'){

 if(O=='U1'){ E = getElmById("unt61"); Ep = getElmById("unt61d"); }
 else if(O=='D1'){ E = getElmById("dec61"); Ep = getElmById("dec61d"); }
 else if(O=='E1'){ E = getElmById("enc61"); Ep = getElmById("enc61d"); }
 /*O = (O=='U1') ? 'T1' : ((O=='D1') ? 'T2' : ((O=='E1') ? 'T3' : O )); */
 
 tO = String(E.innerText);
 tO = String(tO).replace(SP,"");
 /* E.clientWidth , E.clientHeight, E.offsetWidth , E.offsetHeight */
 //dO = E.style.display;  oO = E.style.overflow;  wO = E.style.width;

 //fsO = 0;  fsO = getStyle(E,"fontSize","e");
 Ev = getElmById("u2uz61d");
 t = tO.replace(/ /g,"O");
 Ev.value = t;    Ev.innerText = t;
 //E.style.display="block";
 //E.style.overflow="hidden";
 lo = E.offsetWidth;
 //E.style.display="table";
 Ev.style.display="table";
 //E.style.width = "auto";
 Ev.style.width = "auto";
 //E.style.overflow = "visible";
 Ev.style.overflow = "visible";
 //lt = E.offsetWidth;
 lt = Ev.offsetWidth;
 //E.style.overflow = oO;
 Ev.value = "";  Ev.innerText = " ";  Ev.style.display="block"; Ev.style.overflow = "hidden";
 if(lt>lo){
  pq = 0;
  cl = t.length;
  //E.innerHTML = E.innerHTML.replace(/ /g,"O");
  //t = tO.replace(/ /g,"O");
  //E.innerHTML = t;
  // lt = E.offsetWidth;
  lc = lt / cl ;//avg char width 
  qq = parseInt(lo/lc) - 3;
  qq = qq>0 ? qq : 1;
  if (O=='U1'){ //Ec = E.cloneNode(true);  Ep.replaceChild(Ec,E);
   Ep.innerText = "<textarea name='unt61' id='unt61' rows='4' cols='80' wrap='virtual' nowrap='false' class='wr vam uu61' onChange='with(this.form){unt62.value=unt61.value.removeSSP()}; wrapLword(this.form.unt61,\"U1\");'>";
  }else if(O=='D1'){ 
   Ep.innerText = "<textarea name='dec61' id='dec61' rows='4' cols='80' wrap='virtual' nowrap='false' class='wr vam uu61' onChange='with(this.form){dec62.value=dec61.value.removeSSP()}; wrapLword(this.form.dec61,\"D1\");'>";
  }else if(O=='E1'){ 
   Ep.innerText = "<textarea name='enc61' id='enc61' rows='4' cols='80' wrap='virtual' nowrap='false' class='wr vam uu62' onChange='with(this.form){enc62.value=enc61.value.removeSSP()}; wrapLword(this.form.enc61,\"E1\");'>";
  }
  t = "";
  while(pq<=cl){
   t += tO.substring(pq,pq + qq) + "\xAD";
   pq = pq + qq;
  }
  Ep.innerText += t + "</textarea>";
  Ec = E.cloneNode(true);  Ec.value = t;  Ec.innerText = t;  Ep.replaceChild(Ec,E);
  
  //if (O=='U1'){ //Ep.innerHTML = "";
  //}else if(O=='D1'){ 
  //}else if(O=='E1'){ 
  //}
 }
 //E.style.display = dO;
 //E.style.overflow = oO;
 //E.style.width = wO;
 //q.style.width = "480px!important";
 //q.style.whiteSpace = "normal";

}else if(E.nodeType==3 && O=="C"){ /* 3=Text_Node , 1=Element_Node , 2=Attribute_Node , 6=Entity_Node */

 if(E.nodeValue.replace('\n','').replace('\t','').trim()==''){
  return true;
 }
 P = E.parentNode;
 //tO = E.nodeValue;
 tO = E.innerText;
 tO = tO.removeSSP();
 
 dO = P.style.display;  oO = P.style.overflow;  wO = P.style.width;
 P.style.display="block";
 P.style.overflow="hidden";
 dO2 = E.style.display;  oO2 = E.style.overflow;  wO2 = E.style.width;
 E.style.display="block";
 E.style.overflow="hidden";
 lo = P.offsetWidth;
 lo2 = E.offsetWidth;
 P.style.overflow = oO;  P.style.display = dO;  P.style.width = wO;
 E.style.overflow = oO2;  E.style.display = dO2;  E.style.width = wO2;
 
 fsO = getStyle(E,"font-size","e");   fmO = getStyle(E,"font-family","e");
 
 Ev = getElmById("u2uz61d");
 Ev.style.display="block";
 Ev.style.display="table";
 Ev.style.width = "auto";
 Ev.style.overflow = "visible";
 setStyle("u2uz61d","font-size",fsO,"i");   setStyle("u2uz61d","font-family",fmO,"i");
 Ev.value = tO;   Ev.innerText = tO;
 lt = Ev.offsetWidth;
 
 if(lt>lo || lt>lo2){
  pq = 0;
  //cl = P.textContent.length;
  cl = tO.length;
  //t = P.textContent.replace(SP,"");
  //t = Ev.textContent.removeSSP();
  //E.nodeValue = t.replace(/ /g,"O") + " ";
  t = tO.replace(/ /g,"O");
  //Ev.innerHTML = t.replace(/ /g,"O") + " ";
  Ev.value = t;   Ev.innerText = t;
  
  lt = Ev.offsetWidth;
  Ev.value = "&nbsp;"; Ev.innerText = "&#160;"; Ev.style.display="none"; Ev.style.overflow = "hidden";
  lc = lt / cl;
  qq = parseInt(lo2/lc) - 3;
  qq = qq>0 ? qq : 1 ;
  //E.nodeValue = '';
  E.innerText = '';
  while(pq<=cl){
   //E.nodeValue += tO.substring(pq,pq + qq) + "\xAD";
   E.innerText += tO.substring(pq,pq + qq) + "\xAD";
   pq = pq + qq;
  }
  E.innerText += "T2";
 }
 
 //P.style.display = dO;
 //P.style.overflow = oO;
 //P.style.width = wO;
 /* P.style.wordWrap = "break-word"; */
 setStyle("Tbl_1","width","98.5%!important","i");

}else if(E.childNodes.length==1 && E.childNodes[0].nodeType==3 && O=="C"){

 //if (typeof E.innerText != 'undefined'){return gD4.innerText;}
 //else if (typeof gD4.textContent != 'undefined'){return gD4.textContent;}
 //else if (typeof gD4.innerHTML != 'undefined'){return gD4.innerHTML;}
 //else if (typeof gD4.ownerDocument != 'undefined' && typeof gD4.ownerDocument.createRange != 'undefined'){
 // var r4 = gD4.ownerDocument.createRange();  r4.selectNodeContents(gD4);  return r4.toString();}
 
 tO = String(E.innerText);
 tO = tO.removeSSP();
 dO = E.style.display;  oO = E.style.overflow;  wO = E.style.width;
 fsO = getStyle(E,"font-size","e");   fmO = getStyle(E,"font-family","e");
 E.style.display="block";
 E.style.overflow="hidden";
 lo = E.offsetWidth;
 E.style.display = dO;  E.style.overflow = oO;  E.style.width = wO;
 
 Ev = getElmById("u2uz61d");
 Ev.style.display="block";
 Ev.style.display="table";
 Ev.style.width = "auto";
 Ev.style.overflow = "visible";
 setStyle("u2uz61d","font-size",fsO,"i");   setStyle("u2uz61d","font-family",fmO,"i");
 Ev.value = tO;   Ev.innerText = tO;
 lt = Ev.offsetWidth;
 
 //E.style.overflow = oO;
 if(lt>lo){
  pq = 0;
  cl = tO.length;
  t = tO.replace(/ /g,"O");
  Ev.value = t;   Ev.innerText = t;
  lt = Ev.offsetWidth;
  Ev.value = "&nbsp;"; Ev.innerText = "&#160;"; Ev.style.display="none"; Ev.style.overflow = "hidden";
  lc = lt / cl ;
  qq = parseInt(lo/lc) - 3;
  qq = qq>0 ? qq : 1;
  E.innerText = "";
  while(pq<=cl){
   E.innerText += tO.substring(pq,pq + qq) + "\xAD";
   pq = pq + qq;
  }
  E.innerText += "T3";
 } 
 //E.style.display = dO;
 //E.style.overflow = oO;
 //E.style.width = wO;
 //q.style.width = "480px!important";
 //q.style.whiteSpace = "normal";
 setStyle("Tbl_1","width","98.5%!important","i");
 
}else if(E.childNodes.length>0 && O=="C"){
 for(rL = 0; rL < E.childNodes.length; rL++){ wrapLword(E.childNodes[rL],O); }
}
}





































































































































// Copyright © 2005-2008 Atikotek. All Rights Reserved.
// 7_13_2008 m_d_y : Last Changed
// < / SCRIPT >
//--><!]]>