kobra,
i'm not following you. can you explain what i'm missing here in your comment?

i'm using an example that i worked on a bit ago. if you go here:

http://lawineco.com/2005-chateau-certan-de-may-w-15561

in the middle of the page, there is a red link called Pre-Order. i make use of similar code for this pop-up.

thanks for any clarification. as i am always game to learn and appreciative of any help.

Dreams9: you are close!

i think where you have gone wrong or perhaps we have lead you astray is in the naming convention of your file:

http://shp.d9s.co/includes/templates...tionedPopup.js

apache thinks this file is a javascript file, but you have html tags in it. remove the script tags so that the file just contains:

Code:
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=1060,height=700,screenX=1060,screenY=700,top=150,left=150')
}
and let us know how it goes.

good luck!