Popup parent winow autorefresh problem

I am using following code

window.open("company.aspx?m=I", "Company", "width=600,location=no,status=no,height=450,resizable=no,scroll=no");
<a href="javascript:void(0)" onclick='window.open("company.aspx?m=I", "Company", "width=600,location=no,status=no,height=450,resizable=no,scroll=no");'>

My problem is that when popup window is open then parent window is getting autorefresh what should i do to stop autorefresh of parent window

So the parent window gets refreshed when you open the popup? If yes try adding return false; after window.open

You mean like this

window.open("company.aspx?m=I", "Company", "width=600,location=no,status=no,height=450,resizable=no,scroll=no")return false;

wow u are great !!
Its work out.

No problem