Es fácil hacer una ventanita tipo MSN:
Pon esto en el <head>:
Código HTML:
<script>
function cerrar(){
document.getElementById('msn').style.display = 'none';
}
</script>
<style type="text/css">
#msn { position: fixed; bottom: 10; right: 10;}
</style>
Y esto en el <body>:
Código HTML:
<div id="msn">
Ventana <a href="#" onclick="cerrar()">(X)</a>
</div>