
function loading_igh()
{
	document.getElementById('loading').innerHTML = '<img src="/images/loading_animation_liferay.gif" border="0" alt="Loading..." />';
	return;
}

function switchlayer(Layer_Name)
{
  var GECKO = document.getElementById? 1:0 ;
  var NS = document.layers? 1:0 ;
  var IE = document.all? 1:0 ;

  if (GECKO)
       {document.getElementById(Layer_Name).style.display=
	   (document.getElementById(Layer_Name).style.display=='block') ? 'none' : 'block';}
  else if (NS)
       {document.layers[Layer_Name].display=(document.layers[Layer_Name].display==
	   'block') ? 'none' : 'block';}
  else if (IE)
       {document.all[Layer_Name].style.display=(document.all[Layer_Name].style.display==
	   'block') ? 'none' : 'block';}
}

function write_pm(userid)
{
  var pm_write = false;
  if(typeof global_path == "undefined")
  {
    global_path = "..";
  }
  pm_write = window.open(global_path + '/pm/write/' + userid + '/', 'pc_pm_write_' + userid, 'height=270,width=410,left=100,top=200,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=yes');
}

function openimage()
{
  var win_obj_2 = window.open('','imagewindow','toolbar=no,scrollbars=no,resizable=yes,width=10,height=10,left=150,top=60,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=no');
  win_obj_2.focus();
}

function switcheventtips(id,max)
{
  if(id == 1 && id <= max)
  {
    document.getElementById('eventtip_1').style.display = '';
    document.getElementById('eventtip_2').style.display = 'none';
    document.getElementById('eventtip_3').style.display = 'none';
    document.getElementById('eventtip_prev').innerHTML = '&nbsp;&nbsp;&nbsp;';
    document.getElementById('eventtip_next').innerHTML = '<a href="javascript:switcheventtips(2,' + max +');"><img src="' + global_path +'/images/icons/arrow_right.png" width="16" height="16" border="0" align="top" alt=">>" /></a>';
  } else {
    if(id == 2 && id <= max)
    {
      document.getElementById('eventtip_1').style.display = 'none';
      document.getElementById('eventtip_2').style.display = '';
      document.getElementById('eventtip_3').style.display = 'none';
      document.getElementById('eventtip_prev').innerHTML = '<a href="javascript:switcheventtips(1,' + max +');"><img src="' + global_path +'/images/icons/arrow_left.png" width="16" height="16" border="0" align="top" alt="<<" /></a>';
      document.getElementById('eventtip_next').innerHTML = '<a href="javascript:switcheventtips(3,' + max +');"><img src="' + global_path +'/images/icons/arrow_right.png" width="16" height="16" border="0" align="top" alt=">>" /></a>';
    } else {
      if(id <= max)
      {
        document.getElementById('eventtip_1').style.display = 'none';
        document.getElementById('eventtip_2').style.display = 'none';
        document.getElementById('eventtip_3').style.display = '';
        document.getElementById('eventtip_prev').innerHTML = '<a href="javascript:switcheventtips(2,' + max +');"><img src="' + global_path +'/images/icons/arrow_left.png" width="16" height="16" border="0" align="top" alt="<<" /></a>';
        document.getElementById('eventtip_next').innerHTML = '&nbsp;&nbsp;&nbsp;';
      }
    }
  }
}

function chkFormular()
{
  if(typeof global_path == "undefined")
  {
    global_path = "..";
  }

  if(document.getElementById('onlineusers').value == "" && document.getElementById('onlinefriends').value == "")
  {
   return false;
  }

  if(document.getElementById('onlineusers').value == 'popuponline')
  {
    popuponline = window.open(global_path + '/popuponline/','view_online','height=700,width=350,left=100,top=200,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=yes');
    popuponline.focus();
    return false;
  }


  if(document.getElementById('onlineusers').value != "")
  {
    window.location.href = global_path + '/profile/' + document.getElementById('onlineusers').value + '/';
    return false;
  }
  
  if(document.getElementById('onlinefriends').value == 'popupbuddys')
  {
    window.location.href = global_path + '/forum/profile.php?do=editlist';
    return false;
  }

  if(document.getElementById('onlinefriends').value != "")
  {
    window.location.href = global_path + '/profile/' + document.getElementById('onlinefriends').value + '/';
    return false;
  }


}

function opendetailwindow()
{
  win_obj_2 = window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=yes,width=936,height=650');
  win_obj_2.focus();
}