$(
  function(){

    $(".popup").click(function(){
	  var action = this.getAttribute("data-click");
      if(action == "close")
        $('.popup').fadeOut("fast");
      else if(action == "redirect")
        window.location.replace(this.getAttribute("data-path"));
      else if(action == "show")
        $('.popup').fadeIn("fast");
      });
    return false;
    }
)


function Show_Popup(){
	$('.popup').fadeIn("fast");
}
