Am opening the aspx page in a popup from Window.open using javascript as below.
function OpenPopupWindow() {
var userWidth = screen.availWidth;
var userHeight = screen.availHeight;
leftPos = (userWidth - 500) / 2,
topPos = (userHeight - 500) / 2;
settings = 'modal,scrollBars=no,resizable=no,titlebar=no,status=no,toolbar=no,menubar=no,location=no,directories=no,left=' + leftPos + ',top=' + topPos + ',width=500, height=500';
window.open("EnhanceTerms.aspx", "window", settings);
}
As I expected, the address bar is not showing when i open this page in firefox and IE, but in Chrome it is still showing.
And also how to hide the minimize and maximize from the pop up.
please help me on this.