faz assim <input type="button" value="Entrar" onClick="TrackLog();" style="color: #ffffff; border: 2px ridge #FFFFFF; background-color: #111111" name="b1"> </p> </div> <script> function TrackLog() { var pop_num = 2; var w = window.open("seu site","popWindow","top=10,left=10,width=750,height=550,fullscreen="+pop_num); //top.location.href = location.href; //opener = self; //self.close(); } </script> e no seu site você coloca este script para não abrir com o botão direito <script> function click() { if (event.button==2||event.button==3) { oncontextmenu='return false'; } } document.onmousedown=click document.oncontextmenu = new Function("return false;") </script>