Pass parameter to ColdFusion page
I have a cfm page that contains java script function as follows,
Function calendar (i)
{
var newWind=window.open('calendar.cfm','remote','width=350,height=230');
if (newWind.opener == null)
{ newWind.opener = window; }
}
Variable i can be 1 or 2. I want to pass i to the 'calendar.cfm'.
How I can pass that?
I really appreciate your help.
Thanks,
