function jemail(user, domain, suffix, cssClass)
{
	if(cssClass)
	{
		document.write('<a class="' + cssClass + '" href="mailto:' + user + '@' + domain + '.' + suffix + '"' + '>' + user + '@' + domain + '.' + suffix + '<' + '/' + 'a' + '>');
	}
	else
	{
		document.write('<a href="mailto:' + user + '@' + domain + '.' + suffix + '"' + '>' + user + '@' + domain + '.' + suffix + '<' + '/' + 'a' + '>');
	}
}
function largeImagePopup(imageUrl)
{
	var child = open("largeImagePopup.php?imageUrl="+imageUrl,
		"child",
		"height=500,width=600,screenX=300,screenY=200,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0");
	child.focus();
}