
//	040515	Created
//	050514	Redirection via DisplayCacheDetails applied
	


function dl ( type, LinkInfo )
{
	propetries = getCookie ("BrowserPrefs")
	if ( (propetries & type) == 0 )
	{
		location = LinkInfo;
	}
	else
	{
		window.open ( LinkInfo );
	}
}

function dw ( Wp )
{
	cachelink= "http://www.geocaching.nl/maps/DisplayCacheDetails.php?wp="+ Wp;
	properties = getCookie ('BrowserPrefs');
	if ( (properties & 1) == 0 )
	{
		location = cachelink;
	}
	else
	{
		window.open ( cachelink );
	}
}