// JavaScript Document

/*
 *	Opens a compose mail window.
 */
function doMail(domain, account, ext)
{
	document.location = "mailto:" + account + "@" + domain + "." + ext;
}

/*
 *  Opens an image in a window.
 */
function openImage(location, xSize, ySize)
{
	window.open(location,"image","location=1,status=0,scrollbars=1,resizable=1,width=" + xSize + ",height=" + ySize);
}