function xyz(arg1){
var mfname = arg1;
window.name="subwindow";
window.open("/web-inf/jsp/search.jsp?name=+mfname", "Search", "height=334 );
}
In the above code iam trying to pass parameter "name".but when subwindow pops up, i am not getting the value.
Please let me know how do i pass value.
Thanks in advance for al the help
var mfname = arg1;
window.name="subwindow";
window.open("/web-inf/jsp/search.jsp?name=+mfname", "Search", "height=334 );
}
In the above code iam trying to pass parameter "name".but when subwindow pops up, i am not getting the value.
Please let me know how do i pass value.
Thanks in advance for al the help