allow IE9 (not tested on IE9, OK on firefox and chrome, IE8)

This commit is contained in:
BigEd 2010-09-20 13:09:15 +00:00
parent 7ef9dc4c43
commit 9477ea64b4
1 changed files with 3 additions and 3 deletions

View File

@ -13,12 +13,12 @@
<script type="text/javascript">
function handleOnload() {
if(navigator.appName != 'Microsoft Internet Explorer'){
setTimeout(setup,200);
}else{
if((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion,10)<9)){
document.getElementById('browsertrouble').innerHTML=
'<p>Sorry, '+navigator.appName+' not supported - showing you a picture instead!</p>';
document.getElementById('frame').innerHTML='<a href="browsertrouble.html"><img src="images/jssim2.png" style="border:10px"></a>';
}else{
setTimeout(setup,200);
}
}
</script>