function CheckU13()
{
	var u13Status = $('[name=U13]').val();
	
	if(u13Status == 'true')
	{				
		$('.U13Remove').hide();
		$('.U13Add').show();
		return true;
	}
	
	return false;
}

$(function() {
	SONYMUSIC_COPPA_13.updateForm($('#U13Form'));
	
	$('form.U13Secure').submit(function() {
		var result = CheckU13();
		
		if(result)
		{
			Boxy.alert('Thank you for your interest in commenting.  As we are committed to protecting your privacy, we are unable to accept your registration. However, we invite you to continue browsing the site without commenting.');
			return false;
		} else return true;
	});
});