Possible Duplicate:
Open new popup window without address bars in firefox & IE
I have the following code which works in ie(no addressbar, status bar, etc but not firefox... any suggestions?
function popUpDetails(trackNum) {
var newWindow = (window.open('popUpDetails.aspx?trackNum=' + trackNum, 'Title', 'width=540,height=265, location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no, modal=no'));
}