  var vplocation = "http://bulletin/VHansard/vplayer/bin/visionplayer.html#";
  function launchVisionPlayer(articleID){
// Added by S Chalmers 19 Sep 2003 - Exclude EO and dial up users from access...
var fromIP = document.forms[document.forms.length-1].REMOTE_ADDR.value;
if ( fromIP.indexOf ( '172.16.' ) !=-1 ) {
window.alert ( 'At present video Hansard is only accessible online from within Parliament House.' );
} 
// End exlusion of EO/Dial up
else {
if (navigator.appName.indexOf ("Microsoft") !=-1) {
//Detect IE5.5+
version=0;
if (navigator.appVersion.indexOf("MSIE")!=-1) {
temp=navigator.appVersion.split("MSIE");
version=parseFloat(temp[1])
}
if (version>=5) { 
//NON IE browser will return 0
vpArticlelocation = vplocation + articleID;
vpWin = window.open (vpArticlelocation, 'newwindow', 'height=600, width=780, left=10, top=10, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=yes');
vpWin.focus();
} 
else {
window.alert ('This Version of the Video Hansard Visionplayer requires Microsoft Internet Explorer 5 or higher');
}
} else {
window.alert ('This Version of the Video Hansard Visionplayer currently only supports Microsoft Internet Explorer\n\nThe next version will contain Netscape support');
}
}
}
