// check if cookies can be users on the user machine
checkcookie()
function checkcookie()
{
if (document.cookie == "")
{
	alert("no cookies")
	location.href="/error/no_cookies.asp"
}

}



var x = get_cookie ( 'Securetoolbox' );
function get_cookie ( cookie_name )
{
var results = document.cookie.match ( cookie_name + '=(.*?)(;|$)' );
if ( results )
return ( unescape ( results[1] ) );
else
return null;
}



