var validateAccepted = false;

if($('.navbar').html())
{
	$('#column1BottomInclude').html($('.navbar').html() + $('#column1BottomInclude').html());
	$('#extraInfoInclude').html($('.navbar').html() + $('#extraInfoInclude').html());
}

$(document).ready(function(){
	var qry = window.location.search.substring(1);

	if(qry && qry.indexOf('evtinfo') > -1)
	{
		//BlueBird
		if(qry.indexOf('31f778f8-359f-4418-88f8-081c5afcd613') > -1
		|| qry.indexOf('4fafe7c2-e92e-40c3-be2a-5b9aacf6c6bf') > -1)
		{
			$('#ucImgBtnFindSeats_imgButton').attr('onclick', '');
			$('#ucImgBtnAdd_imgButton').attr('onclick', '');
			$('#pageFooter').append('<div id="termpop"></div>');
			$('#ucImgBtnFindSeats_imgButton').click(function(e) { if(validateAccepted == false) { acceptTerms('../includes/bbc/termsandconditions.inc'); } return validateAccepted; });
			$('#ucImgBtnAdd_imgButton').click(function(e) { if(validateAccepted == false) { acceptTerms('../includes/bbc/termsandconditions.inc'); } return validateAccepted; });
		}
	}

 });

function acceptTerms(path)
{
	var hasValue = false;

	$('.ticketTypeBlock select').each(function() { if($(this).val() != '0') { hasValue = true; } });

	if(hasValue == true)
	{
		var dialogHTML = '';
		$.get(path, function(data) {

			$('#termpop').html(data).dialog({
				resizable: false,
				width: 800,
				height: 500,
				modal: true,
				buttons: {
					"I Have Read And Understand The Terms": function () { $(this).dialog("close"); }
				},
				close: function(event, ui) { validateAccepted = true;  $('#ucImgBtnFindSeats_imgButton').click(); $('#ucImgBtnAdd_imgButton').click(); }
			});

		});
	}
	else
	{
		alert("No Quantity Selected");
	}
}
