childiva said:
Everytime I go to
www.lavalife.com, an error message shows up and then
the
web automatically shuts down. What is the problem, I have checked my
security but what am I looking for? I have Java, please help!!
Well, I went to that site rather fearlessly because I'm not running
Windows, and I viewed the page source. Now, I'm absolutely *not*
knowledgeable about html or any kind of coding, but apparently some
popup is supposed to be launched and perhaps something is supposed to
happen with your browser that your browser doesn't like. Here is the
page source and maybe someone with more knowledge than I will look at
it and say, "Ah hah!" and have your answer. In the meantime, post back
to this thread with more information about your browser, what Service
Pack you have, what kind of protection you have such as antivirus,
firewall, popup blocker.
function launchpopupscroll(url, name, width, height,scroll) {
winSet =
"toolbar=no,location=no,directories=no,menubar=no,scrollbars="+scroll+",resizable=no";
winSet += ",width="+width
+",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
mypopwnd = window.open(url, name, winSet);
mypopwnd.focus();
}
function launchpopup(url, name, width, height) {
launchpopupscroll(url, name, width, height,"yes");
}
function launchsuccesspopup(url, name, width, height) {
winSet =
"toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,status=yes";
winSet += ",width="+width
+",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
mypopwnd = window.open(url, name, winSet);
mypopwnd.focus();
}
function launchwindow(url) {
winSet =
"toolbar=yes,location=no,directories=no,menubar=yes,scrollbars=yes,resizable=yes";
mywnd = window.open(url, '', winSet);
}
function launchFullWindow(url) {
winSet =
"toolbar,location,directories,status,scrollbars,menubar,resizable";
mywnd = window.open(url, '', winSet);
}
function launchmovie(url, name, width, height,scroll) {
winSet =
"toolbar=no,location=no,directories=no,menubar=no,scrollbars="+scroll+",resizable=no";
winSet += ",width="+width
+",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
clipwnd = window.open(url, name, winSet);
clipwnd.focus();
}
Malke