Paul

Not sure exactly why you get that message but try replacing

 <div id ="thesection" onClick = "noSection(thesection)"
STYLE="display:none">
with
 <div id ="thesection" onClick = "noSection()" style="visibility:hidden">

and
 <a href="javascript:noSection(thesection)"> Close</a>
with
 <a href="javascript:noSection()"> Close</a>

and the 2 JS functions with

 function doSection()
   {
     sec = getElementById("thesection");
     sec.style.visibility = "visible";
   }

 function noSection (secNum)
   {
     sec = getElementById("thesection");
     sec.style.visibility = "hidden";
   }

or something like that

Nick

-----Original Message-----
From: paul . [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 23, 2001 8:48 PM
To: CF-Talk
Subject: RE: populating the query result to IFRAME


 well I do get an error saying " style is not an object"
guys please help
-paul
--


**********************************************************************
Information in this email is confidential and may be privileged. 
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to