CAn some one help me out with this javascript (ahh!!)
This is the line :
Response.write('<A HREF="javascript:newGuidanceWindow(qmsadditionalin fo.asp?doc_id='+ escape(d1.data[i].doc_id)+')">');
This is the function that i'm calling:
function newGuidanceWindow(newWin,name, features) {
newWin =window.open( newWin, 'my_window','toolbar=no,titlebar=no,location=no,di rectories=no,status=no,menubar=no,scrollbars=no,re sizable=yes,copyhistory=no,width=300,height=300');
}
</script>
I know that the function works outside the <% %> syntax of ASP. Can you tell me what I'm doing wrong?