31-08-2007, 12:55 PM
Je n'ai pas tout compris à ce que tu souhaite faire, cependant ce petit bout de code pourrait peut-être t'aider j'espère
Code :
<script language="javascript" type="text/javascript">
function messageWindow(title, msg)
{
var width="300", height="125";
var left = (screen.width/2) - width/2;
var top = (screen.height/2) - height/2;
var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
var msgWindow = window.open("","msgWindow", styleStr);
var head = '<head><title>'+title+'</title></head>';
var body = '<center>'+msg+'<br><p><form><input type="button" value=" Done " onClick="self.close()"></form>';
msgWindow.document.write(head + body);
}
</script>