/* Set links */
$(document).ready(function()
{	
	$("a.tool-print").click(
		function () 
		{
			if (window.print)
				window.print();
			else
				alert("Sorry, your browser doesn't support the print feature. Use the File menu on your browser to select Print.");
			return false;	
		}
	);
	
	$("a[rel='external']").attr("target","_blank");
	
	$("tr:odd").addClass("alt");
});

function writeEmail(email,host)
{
	var address=email + '@' + host;
	document.write('<a href=' + 'mail' + 'to:' +address + ' title="Email '+address+'">' + address + '</a>')
}

