lol <title> Unwanted Ad </title>
Main Topics
Browse All TopicsHow do I create a pop-in page on my website? A pop-in is where the advertisement rises from outside the page but not a pop-up
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I believe what adburn is looking for is something like this:
http://www.dynamicdrive.co
(Thanks for giving people yet another reason to diable JavaScript in their browsers. NOT.)
Well, just as with popups, it's not the thing itself that's ugly, the ugliness stems from it being so hideously abused.
My prediction: browsers or browser add-ons will eventually offer users a way to disable ALL onload events. Which, as anyone who's done almost any amount of JS/DOM scripting knows, will be a royal PITA.
You could try these examples
http://www.dynamicdrive.co
Business Accounts
Answer for Membership
by: COBOLdinosaurPosted on 2003-12-31 at 09:01:41ID: 10022226
Here is the code to open it
tm','',chr ome); ()',1000)" >
0);
<html>
<head>
<title> Launcher</title>
<script language="JavaScript">
<!--
function openIt()
{
chrome = "width=400,"
+ "height=200,"
+ "location=0,"
+ "menubar=0,"
+ "resizable=0,"
+ "scrollbars=0,"
+ "status=0,"
+ "titlebar=0,"
+ "toolbar=0,"
+ "hotkeys=0,"
+ "left=0,"
+ "top=200";
x=window.open('pop_slide.h
x.moveTo(-400,200);
x.focus();
}
// -->
</script>
</head>
<body onLoad="setTimeout('openIt
Content of page
</body>
</html>
And the ad code goes in a popup like this:
<html>
<head>
<title> Unwanted Ad </title>
<script>
var offset=-400;
function moveself()
{
self.moveTo(offset,200)
offset+=10;
if (offset<100) setTimeout('moveself()',10
}
window.onload=moveself;
</script>
</head>
<body>
<br />
<h1 style="text-align:center">
This is a despicable unwanted ad
</h1>
</body>
</html>
Fortunately I will never have to view it because I block popups.
Cd&