f_download = function (num) {
	$("#bbg").css({
		display: "block",
		width : $(document.body).width(),
		height: $(document).height(),
		opacity: 0
	}).animate({
		opacity: 0.75
	}, "slow", function () {
		$("#wbox").css({
			width : 340,
			height: 440
		});
		$("#wbox").css({
			display: "block",
			top    : $(document).scrollTop()+($(window).height()/2)-220,
			left   : ($(document).width()/2)-($("#wbox").width()/2)
		});
		$("#wbox").html("<iframe id='wboxcont' frameborder='0' />");
		$("#wboxcont").css({
			width : 340,
			height: 440
		}).attr("src", "revista.php?num="+num);
	}).click(f_hideSend);
}

f_tiendas = function () {
	$("#bbg").css({
		display: "block",
		width : $(document.body).width(),
		height: $(document).height(),
		opacity: 0
	}).animate({
		opacity: 0.75
	}, "slow", function () {
		$("#wbox").css({
			width : 180,
			height: 100
		});
		$("#wbox").css({
			display: "block",
			top    : $(document).scrollTop()+($(window).height()/2)-50,
			left   : ($(document).width()/2)-($("#wbox").width()/2)
		});
		$("#wbox").html("<div id='wboxcont'></div>");
		$("#wboxcont").css({
			width : 180,
			height: 100
		}).html("<p style='margin: 10px; font-family: Arial; font-size: 12px; color: white; text-align: center;'>Si tienes un punto de venta, una escuela o un taller de Luthería en esta comunidad y quieres aparecer aquí, <a href='contacto.php' style='color: #FFFFFF;'>contacta con nosotros</a>.</p>");
	}).click(f_hideSend);
}

f_hideSend = function () {
	$("#wbox").empty().css({
		display: "none"
	});
	$("#bbg").animate({
		opacity: 0
	}, "slow", function () {
		$(this).css("display", "none");
	});
}