function openPlayer(oID,w,h,fscreen,meid,sec) { /** This function is depricated */ openPresentation(oID,w,h,fscreen,meid,sec); } function openPresentation(oID,w,h,fscreen,meid,sec) { var n = navigator, win = window, x = 0, y = 0, v, sParm; v = parseFloat(n.appVersion.substring(n.appVersion.indexOf('.')-1,n.appVersion.length)); if (v >= 4) { if(!h) h = "400"; if(!w) w = "600"; if(fscreen) fscreen = "fullscreen=yes,"; else fscreen = ""; x = (screen.width/2)-(w/2); y = (screen.height/2)-(h/2)-30; loc = "http://ibrainz.cqu.edu.au/player/index.php?id=" + oID; if (meid) loc += "&meid=" + meid + "&sec=" + sec; sParm = "height="+h+",width="+w+"scrollbars=no,location=no,menubar=no,directories=no,toolbar=no,resizable=no"; if (document.all) { oPopup = win.open(loc,"","left="+x+",top="+y+","+fscreen+sParm); oPopup.focus(); } else { oPopup = win.open(loc,"","screenX="+x+",screenY="+y+","+sParm); } } else { location = "http://ibrainz.cqu.edu.au/player/detect.php"; } }