Button
Text Link
Image Button
Popup Windows Tutorial
Example: Click here for popup window
Copy and Paste the code below in the <HEAD> </HEAD> tags of your html.





You may customize this part of the script only:
toolbar=1, scrollbars=1, location=1, statusbar=1, menubar=1, resizable=1, width=500, height=500

1=yes
0=No

For example, if you don't want any scrollbars in your popup window then change scrollbars=1 to scrollbars=0. That's what you do to each one. Also you can change the width and height of the popup window.
Now you may choose one of the following for opening your popup window. Either by an image button, text link, or button. All you need to change in each is the link and that's all. Have Fun. Examples are below each code.
Automatic PopUp Window

Copy & Paste Entire Code Below Only.
Do Not use the code at the top.
Example:
Example:
The only things you need to change in the script are in bold below. That's All. Enjoy!

<script>
// (C) 2001 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header
var theURL = 'yourpage.html';
var width  = 300;
var height = 400;

function popWindow() {
newWindow = window.open(theURL,'newWindow','toolbar=no,menubar=no,resizable=no,
scrollbars=yes,status=no,location=no,width='+width+',height='+height);
}
</script>
Copyright 2005- CasandysDesigns.com
All Rights Reserved