In my application I'd like to display web page with addressbar details should be hidden. Hence I tried the below code and set location=no.
var strStyle = 'status=yes,menubar=no,location=no,toolbar=no,scrollbars=no,height='+strHeight+'px,width='+strWidth+'px,left='+strLeft+'px,top='+strTop+'px';
var newWindow = window.open(strFileName, strLaunchLocation, strStyle);
Unfortunatly It couldn't hidden the address bar which is visible to everyone. How do sort it out this issue ?