﻿
var elem = document.getElementById("box7");

var content = new Array();
content.push('<h2 class="text4">INFO</h2>');
content.push('<h3 class="text5">Have an urgent problem?</h3>');
content.push('<p>Please check our emergency debugging services page. <a href="../debugging.html">Continue&#8230;</a></p>');
content.push('<div class="hr1">');
content.push('<hr />');
content.push('</div>');
content.push('<h3 class="text5">DebugLive debugger</h3>');
content.push('<p>DebugLive debugger makes our work very effective. May be it could also be useful for you. <a href="../debugger.html">More&#8230;</a></p>');
content.push('<div class="hr1">');
content.push('<hr />');
content.push('</div>');
content.push('<h3 class="text5">Questions or comments?</h3>');
content.push('<p>Contact Oleg Starodumov at firstname@debuginfo.com</p>');
content.push('<div class="hr1">');
content.push('<hr />');
content.push('</div>');

elem.innerHTML = content.join('');
