var axiscamcontrolplugin = false;
var winandmsie = false;
if ((navigator.userAgent.indexOf('Win') != -1) && (navigator.userAgent.indexOf('MSIE') != -1)) {
winandmsie = true;
document.writeln('');
document.writeln(' If ScriptEngineMajorVersion >= 2 Then ');
document.writeln(' If IsObject(CreateObject("CamImage.CamImage.1")) Then ');
document.writeln(' Document.Write("") ');
document.writeln(' Document.Write("axiscamcontrolplugin = true;") ');
document.writeln(' Document.Write("") ');
document.writeln(' End If ');
document.writeln(' End If ');
document.writeln('');
}
if (axiscamcontrolplugin == true) {
//Win + MSIE + plugin
document.write('
');
document.write('Du använder Microsoft Internet Explorer och har AXIS ActiveX Camera Control installerad.
');
}
else if (winandmsie == true) {
//Win + MSIE but no plugin
document.write('
');
document.write('Du har inte AXIS ActiveX Camera Control installerad.
');
document.write('Installera plugin...
');
}
else {
}