hola ya vi los errores que tenia, tenia unos espacios dentro del codigo asi que no funcionaba, aqui los corregi y ya funciona.... esta muy buena esta ventana. mas tarde le metere imagenes y color y quedara perfecta.
muchisisisimas gracias.
Código:
<html>
<head>
<script>
//Ventanita tipo Messenger
//Por KarlanKas
//www.forosdelweb.com
//CONFIGURACIÓN
var anchoVentanita=200;
var altoVentanita=150;
var segundos=3;
var ancho=screen.width;
var alto=screen.availHeight;
var ventana;
var izquierda=ancho-anchoVentanita-10;
//Por si se cierra la opener antes de que se oculte la ventanita
function cerrar(){if(ventana && !ventana.closed){ventana.close()}}
//Abre la ventanita
function ventanita(url){
ventana=window.open(url,'ventanita','width='+anchoVentanita+',height=0,top='+alto+',left='+izquierda);
desplegar(true);
}
//Empleado para desplegar y replegar (según la variable cambio sea true o false) la ventanita
function desplegar(cambio){
inicio=(cambio)?0:altoVentanita;
fin=(cambio)?altoVentanita:0;
incremento=(cambio)?1:-1;
for(a=inicio;a!=fin;a+=incremento){
ventana.resizeTo(anchoVentanita,a);
ventana.moveTo(izquierda,(alto-a));
}
(cambio)?esperando=setTimeout('desplegar(false)',segundos*1000):ventana.close();
}
</script>
</head>
<body onunload="cerrar()">
<a href="#" onclick="ventanita('about:blank');return false;">Abrir ventanita</a>
</body>
</html>