Namuna
08-21-2003, 05:58 PM
This is my current code:
<script language="JavaScript">
function WinOpen(url,x,y) {
var options = "toolbar=no,scrollbars=yes,resizable=yes,width=" + x + ",height=" + y;
msgWindow=window.open(url,"WinOpen",options);
}
</script>
I'm happy with the script as far as giving me the flexibility to size windows accordingly with image sizes...But what's missing is the option of a title for popup window.
How do I add that component in?
Thanks.
<script language="JavaScript">
function WinOpen(url,x,y) {
var options = "toolbar=no,scrollbars=yes,resizable=yes,width=" + x + ",height=" + y;
msgWindow=window.open(url,"WinOpen",options);
}
</script>
I'm happy with the script as far as giving me the flexibility to size windows accordingly with image sizes...But what's missing is the option of a title for popup window.
How do I add that component in?
Thanks.