
function CloseThanks(pnlID)
{
    var div = document.getElementById(pnlID);
    
    if (div)
    {
        div.style.display = "none";
    }
}

function ViewTermsAndConditions(url)
{
    window.open(url, 'tc', 'width=700,height=500,toolbars=0,scrollbars=1');
}

function CompetitionEntryForm(compID)
{
	try
	{
		window.open("TermsConditionsPopup.aspx?", "_blank", 'width=500,height=600,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no');
	} 
	catch(err)
	{
		alert("Error!\n\nThe window could not be opened.");
	}
}
