An easy to use Javascript Popup Chromeless Window.
Introduction:
Here’s a simple but flexible javascript popup function. This effect is known as a chromeless window. This usually means that the window is resized and the browser features (nav buttons, address field, scrollbars, resize handle, and favorites) are hidden or altered.
Javascript Source Code:
<script language=”javascript”>
<!–
var openwin;
function popupwin(url,myname,w,h,s)
{
settings=’height=’ h ‘,width=’ w ‘,scrollbars=’ s ‘,toolbar=no,location=no,status=no,menubar=no, resizable=no,dependent=no’
openwin=window.open(url,myname,settings);
}// –>
</script>
HTML Source Code:
<p>
Click here to
<a href=”#” onClick=”popupwin(‘/index.php’,'Loading’,’400′,’400′,’yes’);”>
Open Popup Window</a> the pop up.
</p>
Adding it to your site:
First create a variable called “openwin“. Next create a function called “popupwin()“. This does all the work. To configure the code for your site, just change the values inside the javascript “settings” line and the html link “onClick” values. And that’s it.




I’m looking for information about the coding for a small add that STICKS to the (in this case) bottom-right of the screen (above system tray).
No matter what page one is looking at, it stays right in place (most I suppose with a Flash presentation).
The window that holds it does not have borders, title bar, or anything else; it just acts like a placeholder.
Cheers!
How do I use this code and force the location of the popup box?
see
http://newsourcemedia.com/index_view.php?dbtable=listings&id=85
the cromeless window script does not work with windows xp
I tried many scripts but none of them work.
Maybe it is not possible to let an image pop
with ONLY a boarder..
Thank you man…
Will this work on opera and safari too?