I am using a onclick event on my page.The functionality is to open a new page which should have the staments on that particular dated PDF when clicked on it.
<h:link onclick="pushPost(#{statement.id});return false;">
and am using java script to call the onclick event which is working perfeclty in mozilla but a blank page is appearing on IE
function pushPost(stmtNo){
push = window.open("StatementContent.xhtml?statement="+stmtNo, "push",
"directories=0,height=900,width=850,top=20,left=20,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
push.focus();
}