
function perfom_age_check_if_needed()
{
	if(!document.cookie.match(/\bage_given\b/g))
	{
		var hash_tag = '';
		
		if(window.location.hash.length)
		{
			hash_tag = window.location.hash;
		}
		
		window.location.href = 'age_check.php?url=' +  Base64.encode(window.location.href);
	}	
}

function run_age_checkin()
{
	if(!document.cookie.match(/\bdevice_type\b/g))
	{
		if(is_mobile_device())
		{
			document.cookie = 'device_type=mobil;path=/;';
		}
		else
		{
			document.cookie = 'device_type=desktop;path=/;';
			perfom_age_check_if_needed();
		}
	}
	else if(document.cookie.match(/\bdevice_type=desktop\b/g))
	{
		perfom_age_check_if_needed();
	}
}

