So here is the problem. There is a HTML/JS code, but I can't read v3 variable. In short anything after DDDD(D,{"COM":"lng","leaf":145,"AXIS":true}); (which is some kind of predefined random array) is unreadable(or ignored as JS code). Why? And how can i get contents of v3? Is this a javascript parse bug?
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<script type="text/javascript">
<!--
var v1 = 12345;
var v2 = "Hello world";
DDDD(D,{"COM":"lng","leaf":145,"AXIS":true});
var v3 = "World Hello!!!";
//-->
</script>
</head>
<!-- some html code -->
<script>
alert("This is "+v3);
</script>
<!-- some html code -->
</html>