function online(o)
{
  obj=document.getElementById(o);
  obj.className=(obj.className=='active') ? 'inactive' : 'active';	
}

function  show(o)
{ 
     obj=document.getElementById(o);
     obj.className='active';
}

function  hide(o)
{
     obj=document.getElementById(o);
     obj.className='inactive';
}


function confirmDel()
{
  return confirm("¿Realmente desea eliminarlo?  ");
}



function abrir_chat()
{
  var widthw = 420;
  var heightw = 350;
  var estilo = "resizable=0,menubar=0,toolbar=0,location=0,personalbar=0"+
                 ",status=0,scrollbar=0,width="+widthw+",height="+heightw+",top="+
                 (screen.height-heightw)/2+",left="+(screen.width-widthw)/2;
 
 a=window.open("http://www.irc-hispano.org/demochat/webchat.html"+"?canal=php_para_torpes","WebChatIni",estilo);
}



function comprobar(obj)
{
  if ( !obj.opciones[0].checked &&  !obj.opciones[1].checked &&  !obj.opciones[2].checked)
  {
         alert("Debes elegir una opción");
         return false;
  }
  return true; 
}


function checkAsunto(obj)
{
  if(obj.value=='Asunto')
    obj.value='';
}
function checkOutAsunto(obj)
{
  if(obj.value=='')
    obj.value='Asunto';
}



