$(function(){
	setTimeout('checkLicence()', 1500);
});

function checkLicence() {
	$.getJSON('/licencing.php', {top_url: top.location.href}, function(json){
		if (json.valid == false) {
			expandLicencingFrame();
		}
	});
}
var currentSize = 0;
function expandLicencingFrame() {
	currentSize += 2;
	top.document.getElementById('main_frameset').rows = currentSize + ',0,0,*,13';

	if (currentSize < 22) {
		setTimeout('expandLicencingFrame()', 100);
	}
}

