I got some charts and they have discrete values to each histogram in the
chart. Once a person clicks on a particular histogram they should get a
popped up menu that get data from a query in that new popped up window.
What I need is for the parent window to send a variable to the child window.
Can anyone help my brain impediment?
Thanks in advance.
Rob
<script language="JavaScript">
<!-- Hide
function openWin(){
var myBars = 'directories=no, location=yes, menubar=no, status=no,
titlebar=no, toolbar=no';
var myOptions = 'scrollbars=no, width=600, height=200, resizeable=yes';
var myFeatures = myBars + ',' + myOptions;
var suits_id = 'rs7011';
var newWin = open('test2.htm?var=' + suits_id, 'myDoc', myFeatures);
newWin.document.close();
newWin.focus();
}
// End hide --->
</script>
<BODY BGCOLOR="#FFFFFF">
<form>
<b>Click the following button to open a new window:</b>
<input type=button value="open" onClick='openWin()'>
</form>
</BODY>
</HTML>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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