function printThis(patientId) {
window.open("print.aspx?ID=" + patientId, "Site", "menubar=0,resizable=1,width=800,height=900");
}
works fine with firefox and chrome but not with IE (9.0 at least) - "invalid argument", what's the issue and what's the solution?
Thanks in advance.