Hi! I am using function MM_openBrWindow() to open new window. Here is the javascript.
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
return false;
}
This is how the function is called.
<a href="index.php" onclick="MM_openBrWindow('index.php','','scrollbars=yes,menubar=0,width='+screen.availWidth+',height='+screen.availHeight);return false"><img src="images/logo.jpg" alt="Logo" /></a>
Here pop up window is opened. For Firefox and IE it shows web address bar. The problem here is for safari. It does not show the address bar. Can anyone suggest me what may the problem.
Thanks