
function startBig(div, tabs) {
	var divid = div.attr('id');
	$.post("GMBanner/modules/db_get_one.php", { id: divid, table: tabs.tab_camp }, function(data) {
		if (data != "vod") {
			var list = JSON.parse(data);
			var image = tabs.image_folder+"/"+list.image;
			var found = image.indexOf(".swf");
			if (found != -1) {
				div.html("<object width=\"300\" height=\"250\"><param name=\"movie\" value=\""+image+"\"><embed src=\""+image+"\" width=\"300\" height=\"250\"></embed></object>");
			} else {
				div.html("<img src=\""+image+"\"/>");
			}
			$.post('GMBanner/modules/db_in.php', { cod: list.cod_loc, action: "displayed", table: tabs.tab_report });
			div.click(function () {
				clickedBannerBig(list, tabs);
			});
		}
	});
}

function clickedBannerBig(list, tabs)
{
        $.post('GMBanner/modules/db_in.php', { cod: list.cod_loc, action: "clicked", table: tabs.tab_report }, function(data) {
		if ($.cookie('uid')) {
			var uid = $.cookie('uid');
			$.post('GMBanner/modules/db_uid.php', { uid: uid, banner: list.image, table: tabs.tab_visual }, function(data) {
				location.href = list.link;
			});
		} else {
			location.href = list.link;
		}
	});
}


