Re: [PHP] Re: Script like this for PHP

2001-12-15 Thread Indera
Hello, I know less Flash than I do javascript, which is pretty bad. But thanks Indera Dasmeet Singh Arora wrote: You may also try using flash. It looks good and files are small too Peter wrote: The pop outs are done using JavaScript. Its something to do with setting the

Re: [PHP] Re: Script like this for PHP

2001-12-13 Thread Dasmeet Singh Arora
You may also try using flash. It looks good and files are small too Peter wrote: The pop outs are done using JavaScript. Its something to do with setting the STYLE=visibility: hidden property of the HTML element. I'm not sure exactly how its done though. If you can get your hands on a copy of

[PHP] Re: Script like this for PHP

2001-12-12 Thread Peter
The pop outs are done using JavaScript. Its something to do with setting the STYLE=visibility: hidden property of the HTML element. I'm not sure exactly how its done though. If you can get your hands on a copy of IE 4 (or maybe it was IE 3!), this kind of thing was done on the 'friendly error

RE: [PHP] Re: Script like this for PHP

2001-12-12 Thread Boget, Chris
The pop outs are done using JavaScript. Its something to do with setting the STYLE=visibility: hidden property of the HTML element. I'm not sure exactly how its done though. Yeah, and it only works on IE (and maybe NN6+). It won't work (the same way) on NN 6. Chris

RE: [PHP] Re: Script like this for PHP

2001-12-12 Thread Dan McCullough
Heres a function I wrote some time back for an ecommerce site, works on the same principle. SCRIPT LANGUAGE=javascript !-- function ghShow(){ if (document.all){ // IE browser detected document.all.gh.style.visibility = visible; }

Re: [PHP] Re: Script like this for PHP

2001-12-12 Thread Indera
Hello, I am using IE. I took your advise and checked it under netscape 4.7 (or something like that) and the page opened with the answers showing. That is very interesting. Thanks for the tip. Indera Chris Boget wrote: The pop outs are done using JavaScript. Its something to do with

Re: [PHP] Re: Script like this for PHP

2001-12-12 Thread Indera
Hi Dan, I will try your script. Thank you so much. Indera Dan McCullough wrote: Heres a function I wrote some time back for an ecommerce site, works on the same principle. SCRIPT LANGUAGE=javascript !-- function ghShow(){ if (document.all){ // IE browser