Ver Mensaje Individual
  #12 (permalink)  
Antiguo 25/03/2002, 20:47
Tomillo
 
Fecha de Ingreso: febrero-2002
Mensajes: 503
Antigüedad: 22 años, 9 meses
Puntos: 0
Re: Los Mejores Scripts de lo que sea

Muestra el estado de un usuario de Y! o de ICQ
Calificaciones: 8


<html>
<head>
<title> Mensajeros </title>

<script language="JavaScript">
<!--
function mostrar(){
newwin = window.open('','','top=150,left=150,width=100,heig ht=100');
newwin.opener = self;
with (newwin.document){
open();
write('<html><body>');
write('<center> <b>Usuario</b> '+ usu.value);
if (chat.selectedIndex == 0)
write('<img border=0 src="http://opi.yahoo.com/online?u=' + usu.value + '&m=g&t=1">');
else
write('<img border=0 src="http://online.mirabilis.com/scripts/online.dll?icq=' + usu.value + '&img=2">');
write('</center></body></html>');
close();
}

}
//-->
</script>
</head>

<body>
<select name="chat">
<option value="yahoo">Yahoo
<option value="icq">ICQ
</select>
<input type="text" name="usu">
<input type="button" onClick="mostrar();" value="Estado">
</body>
</html>