Sorry previous message was titled wrong..
Can anyone tell me how I can get around this problem.
I'm in the process of building a 'searchable database' and I'm using javascript in the header to open a new window. I'm also using it to drill down from a page of results to show detail on a new page.
However I'm a little concerned about mac users. I'm not aware or any issues with javascript but if someone could have a look at this script and let me know if theres going to be a problem with it, it would be appreciated.
Heres the scripts for the Header:
Header:
function header() {
global $new_window_width, $new_window_height;
?>
<HEAD>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function open_window(url) {
var NEW_WIN = null;
NEW_WIN = window.open ("","RecordViewer","toolbar=no,width="+<?php echo $new_window_width ?>+",height="+<?php echo $new_window_height ?>+",directories=no,status=no,scrollbars=yes,resize=no,menubar=no");
NEW_WIN.location.href = url;
}
//-->
</SCRIPT>
<TITLE>Solutions Database</TITLE>
</HEAD>
<BODY>
<?PHP
}
Again any help is appreciated.