Kodjo Ackah writes: 

> No joy to this either! 
> 
> <cfif NOT IsDefined('session.client_id')>
>     <script language=javascript>
>       function popUpb(URL) {
> day = new Date();
> id = day.getTime();
> eval("page" + id + " = window.open(home_login.cfm, '" + id + "',
> 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,wid
> th=580,height=580,bgcolor=#111111');");
> } 
> 
>       </script>
>       
> </cfif> 
> 

Well, there wouldn't be any joy to that, since you're just declaring the 
function...you're not calling it. 

Put the function back up in the <head> the way you had it (i presume).  
Inside of your <cfif>, just make a call to the function.... 

<script language="javascript">
    function popUpb('blahblah.cfm');
</script> 

that will work. 


charlie 

 

> Kodjo ackah
> Principal Consultant
> concrete-media.com 
> 
>  
> 
> 
______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to