I have a page including a link which I want to open it in a new window and it's working just fine the only thing is that the address bar is still appearing while I have set the value 'location=no' below is the code in which I am working...
function openWindow() {
window.open('somepage.html',abc,'scrollbars=yes,width=600px,height=450px,location=no');
}