hello
using this popup script below (fairly standard and normal)...
//THIS IS THE SCRIPT FOR ANY POPUPS
function popup(page, name, xsize, ysize) {
var yes = 1;
var no = 0;
var menubar = no; // The File, Edit, View Menus
var scrollbars = yes; // Horizontal and vertical scrollbars
var locationbar = no; // The location box with the site URL
var directories = no; // the "What's New", "What Cool" links
var resizable = no; // Can the window be resized?
var statusbar = no; // Status bar (with "Document: Done")
var toolbar = no; // Back, Forward, Home, Stop toolbar
var myleftpos = (window.screen.width/2) - (xsize + 30);
var mytoppos = (window.screen.height/2) - (ysize + 40);
windowprops = "width=" + xsize + ",height=" + ysize + ",top=" + mytoppos + ",left=" + myleftpos + "";
windowprops += (menubar ? ",menubars" : "") +
(scrollbars ? ",scrollbars" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directories" : "") +
(resizable ? ",resizable" : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");
window.open(page, name, windowprops);
}
and what i am passing it is
"javascriptopup('http://www.bob.com/', 'conception', '300', '300')"
so basically the url is on another server, the result explorer crashes! anyone know why??, problems with accessing urls on other servers??
it works when i pass a url on the same server!
a+
Garrett



opup('http://www.bob.com/', 'conception', '300', '300')"

"There's no justice like angry mob justice!" --Seymour Skinner

Bookmarks