Based on following source code, it is very short, does anyone have any suggestions on what kind of language it uses for this App?
Thanks in advance for any suggestions
http://www.dukascopy.com/free/candelabrum/
<!DOCTYPE html>
<html>
<head>
<title>Candelabrum v2</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="candelabrum.css" type="text/css" />
<script type="text/vbscript">
Function IEBinaryToArray_ByteStr(Binary)
IEBinaryToArray_ByteStr = CStr(Binary)
End Function
Function IEBinaryToArray_ByteStr_Last(Binary)
Dim lastIndex
lastIndex = LenB(Binary)
if lastIndex mod 2 Then
IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )
Else
IEBinaryToArray_ByteStr_Last = ""
End If
End Function
</script>
<script type="text/javascript" src="candelabrum.js"></script>
<script type="text/javascript">
var candelabrum;
window.onload = function() {
candelabrum = new dc.candelabrum.Candelabrum();
candelabrum.render(document.getElementById('candelabrum'));
}
</script>
</head>
<body>
<div id="candelabrum" style="width:670px;">
</div>
</body>
</html>