function switcher(d, n)
{
	document.write('<a href="&#109;&#97;il&#116;o:');
	document.write(n + '@' + d);
	document.write('">');
	document.write(n + ' at ' + d);
	document.write('</a>');
}

function readCookie(name) 
{
	var nameSearch = name + "=";

	var beginIndex = document.cookie.indexOf(nameSearch);
	if (beginIndex != -1)
	{
		beginIndex += nameSearch.length;
		var endIndex = document.cookie.indexOf(";", beginIndex + 1);
		if (endIndex == -1)
		{
			endIndex = document.cookie.length;
		}
		
		return document.cookie.substring(beginIndex, endIndex);
	}
	
	return null;
}
