use the following code to open a new window
window.open('pagename.aspx', '_blank');
If you want to open a window with specific size then use window.open('Pagename.aspx', 'Help', config = 'height=800,width=1013,left=' + left + ', toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, directories=no, status=no'); :)
Pankaj