I am trying to hide the address bar from the popup window using javascript or jquery. When the window pop up's I want to hide the address bar from the window. I dont want to show the link where the pop up is redirected. Here is the code.The address bar can be still seen
$(document).ready(function(){
$(".chat_pannel").click(function () {
//$("#dialog").dialog({modal: true, height: 590, width: 1005 });
var w = window.open("http://www.google.com", "popupWindow", ",resizable=false,width=400, height=500,titlebar=0,toolbar=0");
$(this).hide();
});
});