// JavaScript Document
var IE = false;
var NS = false;
var browser_version = parseInt(navigator.appVersion);
var browser_type = navigator.appName;
if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4)) { IE = true; } 
else if (browser_type == "Netscape" && (browser_version >= 4) && (browser_version < 5)) { NS = true; }
else if (browser_type == "Netscape" && (browser_version >= 5)) { NS = true; }
//var blnNS = document.getElementById && !document.all;
//var blnIE = document.all;
var tt_e = false;

function getElementsByClassName(class_name)
{
  var all_obj,ret_obj=new Array(),j=0,teststr;

  if(document.all)all_obj=document.all;
  else if(document.getElementsByTagName && !document.all)
    all_obj=document.getElementsByTagName("*");

  for(i=0;i<all_obj.length;i++)
  {
    if(all_obj[i].className.indexOf(class_name)!=-1)
    {
      teststr=","+all_obj[i].className.split(" ").join(",")+",";
      if(teststr.indexOf(","+class_name+",")!=-1)
      {
        ret_obj[j]=all_obj[i];
        j++;
      }
    }
  }
  return ret_obj;
}

function createMessage(type, text)
{
    var newId = type+'message';
    if(document.getElementById('message'))
      document.getElementById('message').id = newId;
      
    if(document.getElementById(newId).style.display == 'none')
      Effect.Appear(newId, { duration: 0.5 });
      
    if(type == 'status')
      document.getElementById('messageicon').innerHTML = '<img src="./img/icon_status.gif" width="19" height="19" border="0" align="middle" alt="" title="" />';
    if(type == 'error')
      document.getElementById('messageicon').innerHTML = '<img src="./img/icon_error.gif" width="19" height="19" border="0" align="middle" alt="" title="" />';
     
    if(document.getElementById('messagetext').innerHTML == "")
      document.getElementById('messagetext').innerHTML = text;
    else
      document.getElementById('messagetext').innerHTML += '<br/>'+text;
      
    if(type == 'status')
      setTimeout("fadeMessage('"+newId+"')", 5000);
}

function fadeMessage(id)
{
  Effect.Fade(id, { duration: 1.0 });
  setTimeout("resetMessage()", 1000);
}

function resetMessage()
{
  if(document.getElementById('statusmessage'))
    Effect.Fade('statusmessage', { duration: 0.5 });
    
  if(document.getElementById('errormessage'))
    Effect.Fade('errormessage', { duration: 0.5 });

  document.getElementById('messageicon').innerHTML = '';
  document.getElementById('messagetext').innerHTML = '';
  
  if(document.getElementById('statusmessage'))
  {
    document.getElementById('statusmessage').style.display = 'none';
    document.getElementById('statusmessage').id = 'message';
  }
  if(document.getElementById('errormessage'))
  {
    document.getElementById('errormessage').style.display = 'none';
    document.getElementById('errormessage').id = 'message';
  }
}

function resetMessageText()
{
  document.getElementById('messagetext').innerHTML = '';
}

function inPlaceMessage(response, element, info)
{
   var response = response.responseText;
   if (response != '')
   {
    $(element).style.border = "1px solid #FF0000";
    $(info).style.display = "block";
    $(info).innerHTML = response;
   }
   else
   {
    $(element).style.border = "1px solid #00bd00";
    $(info).style.display = "none";
   }
}

function resetInPlaceMessage(info)
{
  $(info).style.display = "none";
}

function signSFieldwT(response, element, info)
{
   $(element).style.border = "1px solid #FF0000";
   $(info).style.display = "block";
   $(info).innerHTML = response;
}

function signSField(element)
{
   $(element).style.border = "1px solid #FF0000";
}

function signSFieldOK(element)
{
  $(element).style.border = "1px solid #00bd00";
}

function unsignSField(element)
{
   $(element).style.border = "1px solid #999";
}

//--------------- NEW ---------------
function createSildeOutMessage(type, text)
{
  if(NS)
  {
    var top = window.pageYOffset+'px';
  }
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      var top = document.body.scrollTop+'px';
    else
      var top = document.documentElement.scrollTop+'px';
  }
  
  W = 958;
  
  var mb = -1*(W/2);
  
  W += 'px';

  d = document.createElement('div');
  d.id = type+"messagex";
  d.style.display = 'block';
  d.style.marginLeft = mb+'px';
  d.style.left = '50%';
  d.style.top = top;
  d.style.width = W;
  d.style.height = '50px';
  if(type == 'error')
    d.style.backgroundColor = '#ff7b7b';
  if(type == 'status')
    d.style.backgroundColor = '#fff39d';
  d.style.position = 'absolute';
  d.style.zIndex = '99';
  d.style.opacity = 8/10;
	d.style.filter = 'alpha(opacity=' + 8*10 + ')';
	d.innerHTML = text;
	document.body.appendChild(d);
  Effect.SlideDown(d.id);
}
//-----------------------------------

function createPopup(text, action, id, width, height)
{
  makeBGLayer('popupbg','popup','#000000','5','60');
  makeLayer('popup',width,height,'#FFFFFF','10','70');


  document.getElementById('popup').style.border = '1px solid #000';
  
  var html =  '<table style="width:100%; height:90%; padding:5%;" cellpadding="0" cellspacing="0">'+
              '<tr style="height:64%;">'+
              '<td colspan="2" style="padding:3%; text-align:center;">'+
              text+'<br/><br/>'+
              '</td>'+
              '</tr>'+
              '<tr style="height:30%;">'+
              '<td id="ok" style="width:50%; text-align:center;">'+
              '</td>'+
              '<td id="cancel" style="width:50%; text-align:center;">'+
              '</td>'+
              '</tr>'+
              '</table>';
  
  document.getElementById('popup').innerHTML = html;
  
  okb=document.createElement('input');
  okb.type = 'image';
  okb.src = './img/btn_ok.gif';
  okb.style.width = 80;
  okb.onclick = function() { 
    if(action == 'csd')
      deleteCS(id); 
    if(action == 'csdrl')
      deleteCSRL(id);
    if(action == 'cad')
      deleteCat(id); 
    if(action == 'crd')
      deleteCard(id);
    if(action == 'pd')
      deleteProb(id);
    if(action == 'cadall')
      deleteAllCat(); 
    if(action == 'carall')
      deleteAllCards(id);
    if(action == 'invp')
      inviteProb(id);
    if(action == 'invpfkt')
      inviteProbFkt(id);
    if(action == 'probderg')
      deleteProbErg(id);
      //document.getElementsByName('invprob'+id)[0].submit();
    if(action == 'invproball')
      inviteAllProbs();
    if(action == 'proball')
      deleteAllProbs();
    if(action == 'csv')
      releaseProject(id);
    if(action == 'csbe')
      stopProject(id);
    if(action == 'csvrl')
      document.csrelease.submit();
    if(action == 'csberl')
      document.csstop.submit();
  };
  document.getElementById('ok').appendChild(okb);
  
  cab=document.createElement('input');
  cab.type = 'image';
  cab.src = './img/btn_abbrechen.gif';
  cab.style.width = 80;
  cab.onclick = function() { closePopup('popup') };
  document.getElementById('cancel').appendChild(cab);
}

function createConfirmationDialog(text, width, height)
{
  makeBGLayer('popupbg','popup','#000000','5','60');
  makeLayer('popup',width,height,'#FFFFFF','10','70');


  document.getElementById('popup').style.border = '1px solid #000';
  
  var html =  '<table style="width:100%; height:90%; padding:5%;" cellpadding="0" cellspacing="0">'+
              '<tr style="height:64%;">'+
              '<td colspan="2" style="padding:3%; text-align:center;">'+
              text+'<br/><br/>'+
              '</td>'+
              '</tr>'+
              '<tr style="height:30%;">'+
              '<td id="ok" style="width:50%; text-align:center;">'+
              '</td>'+
              '<td id="cancel" style="width:50%; text-align:center;">'+
              '</td>'+
              '</tr>'+
              '</table>';
  
  document.getElementById('popup').innerHTML = html;
  
  okb=document.createElement('input');
  okb.id = "btn_confirmation";
  okb.type = 'image';
  okb.src = './img/btn_ok.gif';
  okb.style.width = 80;
  document.getElementById('ok').appendChild(okb);
  
  cab=document.createElement('input');
  cab.type = 'image';
  cab.src = './img/btn_abbrechen.gif';
  cab.style.width = 80;
  document.getElementById('cancel').appendChild(cab);
  cab.onclick = function() { closePopup('popup'); };
}

function createNotification(text, width, height)
{
  makeBGLayer('popupbg','popup','#000000','5','60');
  makeLayer('popup',width,height,'#FFFFFF','10','70');


  document.getElementById('popup').style.border = '1px solid #000';
  
  var html =  '<table style="width:100%; height:90%; padding:5%;" cellpadding="0" cellspacing="0">'+
              '<tr style="height:64%;">'+
              '<td colspan="2" style="padding:3%; text-align:center;">'+
              text+'<br/><br/>'+
              '</td>'+
              '</tr>'+
              '<tr style="height:30%;">'+
              '<td id="ok" style="width:100%; text-align:center;">'+
              '</td>'+
              '</tr>'+
              '</table>';
  
  document.getElementById('popup').innerHTML = html;
  
  okb=document.createElement('input');
  okb.type = 'image';
  okb.src = './img/btn_ok.gif';
  okb.style.width = 80;
  document.getElementById('ok').appendChild(okb);
  okb.onclick = function() { closePopup('popup'); };
}

function createInfoPopup(text, width, height)
{
  makeBGLayerNC('popupbg','popup','#000000','5','60');
  makeLayer('popup',width,height,'#FFFFFF','10','70');


  document.getElementById('popup').style.border = '1px solid #000';
  
  var html =  '<table style="width:100%; height:90%; padding:5%;" cellpadding="0" cellspacing="0">'+
              '<tr style="height:94%;">'+
              '<td style="padding:3%; text-align:center;">'+
              text+'<br/><br/>'+
              '</td>'+
              '</tr>'+
              '</table>';
  
  document.getElementById('popup').innerHTML = html;
}

function closePopup(id) 
{
  Effect.Fade(id, { duration: 0.5 });
  Effect.Fade('popupbg', { duration: 0.5 });
  setTimeout("doclosePopup('"+id+"')", 500);
}

function closePopupOnly(id) 
{
  Effect.Fade(id, { duration: 0.5 });
  setTimeout("doclosePopupOnly('"+id+"')", 500);
}

function doclosePopup(id)
{
  deleteLayer(id);
  deleteLayer('popupbg');
  if(id == 'pnotif')
  {
    highlightRow('cs_'+getVar('p_id'), '#ffff99');
    createMessage('status', 'Projekt erfolgreich angelegt!');
  }
}

function doclosePopupOnly(id)
{
  deleteLayer(id);
  if(id == 'pnotif')
  {
    highlightRow('cs_'+getVar('p_id'), '#ffff99');
    createMessage('status', 'Projekt erfolgreich angelegt!');
  }
}

function doPopup(target) 
{
  window.location = target;
}

function createPopupForm(src, width, height)
{
  makeBGLayer('popupbg','popupform','#000000','5','60');
  makeLayer('popupform',width,height,'#FFFFFF','10','70');

  document.getElementById('popupform').style.border = '1px solid #000';
  
  var html =  '<table style="width:100%; height:100%;" cellpadding="0" cellspacing="0">'+
              '<tr>'+
              '<td>'+
              '<iframe src="'+src+'" name="popupif" id="pufrom" width="'+width+'" height="'+height+'" vspace="0" hspace="0" marginwidth="0" marginheight="0" style="overflow:visible; display:block;" allowtransparency="true" frameborder="0" scrolling="no" align="left"></iframe>'+
              '</td>'+
              '</tr>'+
              '</table>';
  
  document.getElementById('popupform').innerHTML = html;
}

function createPNotif(src, pid, width, height)
{
  makeBGLayer('popupbg','pnotif','#000000','5','60');
  makeLayer('pnotif',width,height,'#FFFFFF','10','70');

  document.getElementById('pnotif').style.border = '1px solid #000';
  
  var html =  '<table style="width:100%; height:100%;" cellpadding="0" cellspacing="0">'+
              '<tr>'+
              '<td>'+
              '<iframe src="'+src+'?p_id='+pid+'" onload="resizeIF(\'pnotif\', \'ifpnotif\', '+height+')" id="ifpnotif" name="popupif" width="'+width+'" vspace="0" hspace="0" marginwidth="0" style="overflow:visible; display:block;" marginheight="0" allowtransparency="true" frameborder="0" scrolling="no" align="left"></iframe>'+
              '</td>'+
              '</tr>'+
              '</table>';
  
  document.getElementById('pnotif').innerHTML = html;
}

function makeBGLayer(id,pid,bgColor,opacity,zIndex) 
{
  if (!document.createElement) return;
  if (document.getElementById(id)) return;
  
  if(NS)
    document.body.style.overflow = 'hidden';
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      document.body.style.overflow = 'hidden';
    else
      document.documentElement.style.overflow = 'hidden';
  }
  
  if(NS)
  {
    var top = window.pageYOffset+'px';
  }
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      var top = document.body.scrollTop+'px';
    else
      var top = document.documentElement.scrollTop+'px';
  }
  
  d = document.createElement('div');
  d.id = id;
  d.style.display = 'none';
  d.style.left = '0px';
  d.style.top = top;
  d.style.width = '100%';
  //d.style.height = '100%';
  d.style.height = '2000px'; // IE6 Fix
  d.style.backgroundColor = bgColor;
  d.style.position = 'absolute';
  d.style.zIndex = zIndex;
  d.style.opacity = opacity/10;
	d.style.filter = 'alpha(opacity=' + opacity*10 + ')';
	d.onclick = function(){closePopup(pid);}
  document.body.appendChild(d);
  Effect.Appear(d, { duration: 0.5, to: opacity/10 });
}

function makeBGLayerNC(id,pid,bgColor,opacity,zIndex) 
{
  if (!document.createElement) return;
  if (document.getElementById(id)) return;
  
  if(NS)
    document.body.style.overflow = 'hidden';
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      document.body.style.overflow = 'hidden';
    else
      document.documentElement.style.overflow = 'hidden';
  }
  
  if(NS)
  {
    var top = window.pageYOffset+'px';
  }
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      var top = document.body.scrollTop+'px';
    else
      var top = document.documentElement.scrollTop+'px';
  }
  
  d = document.createElement('div');
  d.id = id;
  d.style.display = 'none';
  d.style.left = '0px';
  d.style.top = top;
  d.style.width = '100%';
  //d.style.height = '100%';
  d.style.height = '2000px'; // IE6 Fix
  d.style.backgroundColor = bgColor;
  d.style.position = 'absolute';
  d.style.zIndex = zIndex;
  d.style.opacity = opacity/10;
	d.style.filter = 'alpha(opacity=' + opacity*10 + ')';
  document.body.appendChild(d);
  Effect.Appear(d, { duration: 0.5, to: opacity/10 });
}

function makeLayer(id,W,H,bgColor,opacity,zIndex) 
{
  if (!document.createElement) return;
  if (document.getElementById(id)) return;
  
  if(NS)
  {
    var top = window.pageYOffset+(window.innerHeight/2)-(H/2)+'px';
  }
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      var top = document.body.scrollTop+(document.body.clientHeight/2)-(H/2)+'px';
    else
      var top = document.documentElement.scrollTop+(document.documentElement.clientHeight/2)-(H/2)+'px';
  }
  
  var mb = -1*(W/2);
  
  W += 'px';
  H += 'px';
  
  d = document.createElement('div');
  d.id = id;
  d.style.display = 'none';
  d.style.marginLeft = mb+'px';
  d.style.marginBottom = mb+'px';
  d.style.left = '50%';
  d.style.top = top;
  d.style.width = W;
  //d.style.height = H;
  d.style.backgroundColor = bgColor;
  d.style.position = 'absolute';
  d.style.zIndex = zIndex;
  d.style.opacity = opacity/10;
	d.style.filter = 'alpha(opacity=' + opacity*10 + ')';
  document.body.appendChild(d);
  
  Effect.Appear(d, { duration: 0.5 });
}

function deleteLayer(id)
{
  if(NS)
    document.body.style.overflow = 'auto';
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      document.body.style.overflow = 'auto';
    else
      document.documentElement.style.overflow = 'auto';
  }
  
  if (!document.createElement) return;
  d = document.getElementById(id);
  if (!d) return;
  document.body.removeChild(d);
}

function resizeIF(id, fid, minheight) 
{
   if(document.all&&!window.opera) 
   {
     var a = document.popupif;
     a.document.body.scroll = 'no';
   } 
   else 
   {
     var a = document.getElementById(fid);
     a.scrolling = 'no';
   }
   a = document.getElementById(fid);
   var b = a.contentWindow.document.getElementById('cont');
   a.contentWindow.document.body.style.overflow = 'hidden';
   if(a.style.height != eval(b.offsetHeight)+'px') 
   {
      if(b.offsetHeight == 0)
        a.style.height = minheight+'px';
      else
        if(NS)
          a.style.height = eval(b.offsetHeight+10)+'px';
        else
          a.style.height = eval(b.offsetHeight)+'px';
   }
   var height = a.style.height;
   repostion(id, height);
}

function repostion(id, h)
{
  h = parseInt(h);
  
  if(NS)
  {
    var top = window.pageYOffset+(window.innerHeight/2)-(h/2)+'px';
  }
  if(IE)
  {
    if(!document.documentElement.clientHeight)
      var top = document.body.scrollTop+(document.body.clientHeight/2)-(h/2)+'px';
    else
      var top = document.documentElement.scrollTop+(document.documentElement.clientHeight/2)-(h/2)+'px';
  }
  var d = document.getElementById(id);
  d.style.top = top; 
}

function hoverRow(row)
{
  row.style.backgroundColor='#f2f2f2';
  row.style.backgroundImage='url(./img/tabellen_trenner.gif)';
  row.style.backgroundPosition= 'bottom';
  row.style.backgroundRepeat= 'repeat-x';
}

function hoverOutRow(row)
{
  row.style.backgroundColor='transparent';
  row.style.backgroundImage='';
}

function highlightRow(id, color)
{
  var row = document.getElementById(id);
  if(row.style.backgroundColor == 'transparent' || row.style.backgroundColor == '#ffffff' || row.style.backgroundColor == '')
  {
    new Effect.Highlight(row, { startcolor: color, endcolor: row.style.background, duration: 1.0 });
  }
  return false;
}

function highlight(id, color)
{
  var el = document.getElementById(id);
  new Effect.Highlight(el, { startcolor: color, endcolor: el.style.background, duration: 1.0 });
}

function tooltip(event, el, content)
{
  if(!document.getElementById('tooltip'))
  {
    tt_e = true;
    tt = document.createElement('div');
    tt.id = 'tooltip';
    tt.className = 'tooltip';
    tt.style.background = '#ffff99';
    tt.style.position = 'absolute';
    tt.style.display = 'none';
    tt.style.zIndex = '50';
    tt.style.width = 'auto';
    tt.style.height = 'auto';
    tt.style.size = '11px';
    tt.style.padding = '5px 10px 5px 10px';
    tt.innerHTML = content;
    document.body.appendChild(tt);
    Effect.Appear('tooltip', { duration: 0.1 });
  }
  tt_position(event);
  el.onmouseout = closeTooltip;
}

function tooltip2(event, el, content)
{
  if(!document.getElementById('tooltip'))
  {
    tt_e = true;
    tt = document.createElement('div');
    tt.id = 'tooltip';
    tt.className = 'tooltip';
    tt.style.background = '#FAFAFA';
    tt.style.border = '1px solid #CCCCCC';
    tt.style.position = 'absolute';
    tt.style.display = 'none';
    tt.style.zIndex = '50';
    tt.style.fontWeight = 'normal';
    tt.style.width = 'auto';
    tt.style.height = 'auto';
    tt.style.size = '11px';
    tt.style.padding = '5px 10px 5px 10px';
    tt.style.margin = '5px 0 0 10px';
    tt.innerHTML = content;
    document.body.appendChild(tt);
    Effect.Appear('tooltip', { duration: 0.1 });
  }
  tt_position(event);
  el.onmouseout = closeTooltip;
}

function tooltipdesc(event, el, content)
{
  if(!document.getElementById('tooltip'))
  {
    tt_e = true;
    tt = document.createElement('div');
    tt.id = 'tooltip';
    tt.className = 'tooltip';
    tt.style.background = '#83bfde';
    tt.style.position = 'absolute';
    tt.style.display = 'none';
    tt.style.zIndex = '50';
    tt.style.width = 'auto';
    tt.style.height = 'auto';
    tt.style.size = '11px';
    tt.style.color = '#555555';
    tt.style.fontWeight = 'normal';
    tt.style.border = '1px solid #4687a8';
    tt.style.padding = '5px 10px 5px 10px';
    tt.style.width = '200px';
    tt.style.overflow = 'hidden';
    tt.style.textAlign = 'left';
    tt.innerHTML = content;
    document.body.appendChild(tt);
    Effect.Appear('tooltip', { duration: 0.1 });
  }
  tt_position(event);
  el.onmouseout = closeTooltip;
}

function tt_position(event) 
{
  if (document.getElementById('tooltip')) 
  {
    obj_tt = document.getElementById('tooltip');
    
    if(!document.documentElement.clientHeight)
      var intcH = document.body.clientHeight;
    else
      var intcH = document.documentElement.clientHeight;
      
    if (IE) 
    {
      intcX = event.clientX; 
      if(!document.documentElement.clientHeight)
      {
        intcY = event.clientY + document.body.scrollTop + 5;
        intsLeft = document.body.scrollLeft;
      }
      else
      {
        intcY = event.clientY + document.documentElement.scrollTop;
        intsLeft = document.documentElement.scrollLeft;
      }
      var intBottom = intcH - event.clientY - 5;
    } 
    
    if(NS)
    {
      intcX = event.clientX; 
      intcY = event.pageY;
      var intBottom = intcH - obj_tt.clientY - 5;
      intsLeft = 0;
    }
  
    obj_tt.style.left = intcX + 5 + "px";
    if (intBottom < obj_tt.offsetHeight) 
    {
      obj_tt.style.top = intcY - obj_tt.offsetHeight + 5 + "px";
    } 
    else 
    {
      obj_tt.style.top = intcY + 5 + "px";
    }
  }
}

function closeTooltip()
{
  if(document.getElementById('tooltip'))
  {
    Effect.Fade('tooltip', { duration: 0.1 });
    tt = document.getElementById('tooltip');
    if(IE)
    {
      if(!document.documentElement)
      {
        $('tooltip').remove();
        //document.body.removeChild(tt);
      }
      else
      {
        $('tooltip').remove();
        //document.documentElement.removeChild(tt);
        //document.body.removeChild(tt);
      }
    }
    if(NS)
    {
      document.body.removeChild(tt);
    }
  }
}

function hideTooltip()
{
  if(document.getElementById('tooltip'))
  {
    tt = document.getElementById('tooltip');
    tt.style.visibility = 'hidden';
  }
}

function viewTooltip()
{
  if(document.getElementById('tooltip'))
  {
    tt = document.getElementById('tooltip');
    tt.style.visibility = 'visible';
  }
}

function viewMenu(el)
{
  divs = el.getElementsByTagName("div");
  divs[0].style.position = "relative";
  divs[0].style.zIndex = "20";
  divs[1].style.backgroundImage = "url(img/bg_sortingaccessor_left_a.gif)";
  divs[2].style.backgroundImage = "url(img/bg_sortingaccessor_middle_a.gif)";
  img = divs[2].getElementsByTagName("img");
  img[0].src = "img/ico_sortingaccessor_active.gif";
  divs[3].style.backgroundImage = "url(img/bg_sortingaccessor_right_a.gif)";
  
  divs = el.getElementsByTagName("div");
  divs[4].style.position = "absolute";
  divs[4].style.zIndex = "-1";
  divs[4].style.top = "21px";
  divs[4].style.left = "0px";
  divs[4].style.display = "block";

  el.onmouseout = function(){hideMenu(el);};
}

function hideMenu(el)
{
  divs = el.getElementsByTagName("div");
  divs[1].style.backgroundImage = "url(img/bg_sortingaccessor_left.gif)";
  divs[2].style.backgroundImage = "url(img/bg_sortingaccessor_middle.gif)";
  img = divs[2].getElementsByTagName("img");
  img[0].src = "img/ico_sortingaccessor.gif";
  divs[3].style.backgroundImage = "url(img/bg_sortingaccessor_right.gif)";
  
  divs[4].style.display = "none";
}

function processing(text)
{
  createInfoPopup(text, 200, 25);
}




