Hello jumail,
I checked your url.
I think you need this:
Here is the code:
<html>
<head>
<script language="javascript">
properties='scrollbars=0,toolbar=0,resizable=0,width=200,
height=200,top=100,left=200';
function popupwindow()
{
newwindow=window.open('','mywindow',properties);
}
</script>
</head>
<body onload="popupwindow()">
your HTML code
</body>
</html>
This will open a popup window you can drag anywhere in the screen.I specified a width and height of 200 px and the window is ubicated 100 px from the top and 200 px from left of the screen.
You put the dimensions and location you wish
Then I called the fuction with the "onload" event handler.
Here again you may wish to change how to call the function.
I hope this helps,
Best Regards
alexfusion