tomjoyce
02-01-2005, 12:14 AM
<script language="JavaScript1.2">
function oC(x)
{
sw = screen.width;
sh = screen.height;
nsw = sw/1.25;
nsh = sh/1.25;
window.open('detail.php?type=2&x='+x,'Detailed View','width='+nsw,'height='+nsh,'resizable=0,scrollbars=1,toolbar=0,location=0,directories=0,status =1,menubar=0,copyhistory=0');
}
</script>
I have a table with images and I need to be able to click on an image and have it pop up with details in a new window. It works in FireFox and it doesn't in Internet Explorer. Since most visiters to this site use Internet Explorer, this bug is completely inexcusable. I need to fix it ASAP, as the time constraint is soon approaching. If it stops working in FireFox to solve the IE problem, I can handle that and it isn't a problem to my boss.
Please help as soon as you can, since I'm more of a database backend/server side scripting guy, not a client side scripting/design/etc. guy...
Thanks,
Tom Joyce
function oC(x)
{
sw = screen.width;
sh = screen.height;
nsw = sw/1.25;
nsh = sh/1.25;
window.open('detail.php?type=2&x='+x,'Detailed View','width='+nsw,'height='+nsh,'resizable=0,scrollbars=1,toolbar=0,location=0,directories=0,status =1,menubar=0,copyhistory=0');
}
</script>
I have a table with images and I need to be able to click on an image and have it pop up with details in a new window. It works in FireFox and it doesn't in Internet Explorer. Since most visiters to this site use Internet Explorer, this bug is completely inexcusable. I need to fix it ASAP, as the time constraint is soon approaching. If it stops working in FireFox to solve the IE problem, I can handle that and it isn't a problem to my boss.
Please help as soon as you can, since I'm more of a database backend/server side scripting guy, not a client side scripting/design/etc. guy...
Thanks,
Tom Joyce