una cosa così?
Codice HTML:
<script language="javascript" type="text/javascript">
function finestra(){
if(window.innerWidth){
w=150;
h=128;
}else{
w=155;
h=150;
}
document.getElementById('finestra').style.marginLeft = document.body.clientWidth - w;
document.getElementById('finestra').style.marginTop = document.body.clientHeight - h;
document.getElementById('finestra').style.display = 'block';
}
function chiudi(){
document.getElementById('finestra').style.display = 'none';
}
</script>
<input type="button" value="MsnStyle" onclick="javascript:finestra()"/>
<div id="finestra" style="display: none; width: 140; height: 90">
<div style="width: 100%; height: 15%; background-color: red; font-size: 10px; text-align: right"><a href="#" onclick="chiudi(); return false;">Chiudi</a></div>
<div style="width: 100%; height: 90%; background-color: orange;"></div>
</div>