Click to See Complete Forum and Search --> : popup not working


IndyB
08-07-2003, 09:51 AM
For some reason this popup is not working. Not getting any errors. The popup window just doesn't open when the link is clicked. Anyone see anything wrong with this?

<td><a href="javascript: worksheet(#page.claim_id#,#page.set_ID#,#page.line_ID#,'#page.li_amount#','ineligible')"><img src="/pics/button.magnify.gif" width="17" height="21" border="0"></a></td>

<script>
function worksheet(claim_id,set_ID,line_ID,li_amount,ineligible)
{
url = "/application/claims/admin/adjudicate/popup.worksheet.fee_schedule.cfm?claim_id="+claim_id+"&set_id="+set_ID+"&line_id="+line_ID+"&line_amount="+li_amount+"&ineligible_field="+ineligible;
dopopup(url,'#replace(createuuid(), "-", "_", "All")#',Number(screen.availWidth-300),Number(screen.availHeight-400),0,0,'no','no','no','no','no','yes','yes','no','no','no');
}
</script>

Phil Karras
08-08-2003, 11:17 AM
Where's the window.open(URL, "name") call for a pop-up window?