<!-- ############################################ -->
<!-- #  Global Javascript                       # -->
<!-- #  Author & Copyright: Andrew Watson       # -->
<!-- #  Date: 20.07.2004                        # -->
<!-- ############################################ -->
function popupwin(sitefile,h,w)

{
var platform_name=navigator.platform.toLowerCase()
var broswer_name=navigator.appName.toLowerCase()
var is_ie = (broswer_name.indexOf('microsoft')!=-1)
var is_mac = (platform_name.indexOf('mac')!=-1)
if (is_ie && is_mac)
{
vars2 = "height="+h+",width="+w+",left=30,top=30,scrollbars=yes,toolbar=no,status=no,resizable=no"
}else
{
vars2 = "height="+h+",width="+w+",left=30,top=30,scrollbars=yes,toolbar=no,status=no,resizable=no"
}

focus_win = window.open(sitefile,'newwin',vars2)
focus_win.window.focus()
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}