﻿$(document).ready(function() {
	
	//This anchor tag with class is in the ABCTextPageLayoutGrowerHandler
	$("a.dvPopUpContainer").click(function(e) {
	
		$("#dvPopUpContainer").show();
		e.preventDefault();
	});
	
	var totalElements = $("#tdErrors").children().length;
	var successElements = jQuery.trim($("#workshop_success").text()).length;

	if(successElements > 0 || totalElements > 0)
	{
		$("div#dvPopUpContainer").show();

		if(successElements > 0)
		{
			$(".workshop_content").hide();
			
			$("#dvPopUpContainer").attr("class", "bg_popup_form_thankyou");
		}
	}
	
	$("a.closeMe").click(function(e) {
		
		var name = $(this).attr("name");
		$("#" + name).hide();
		e.preventDefault();
	});
});
