function pm_showPreview(inImageUrl)
{
	//	change the thumbnail to the appropriate one...
	previewImageObject = document.getElementById('preview_image');
	previewImageObject.src = inImageUrl;
	
	//	show the thumbnail container div...
	previewContainer = document.getElementById('preview_container');
	previewContainer.style.visibility = "visible";
}


function pm_clickedClosePreview()
{
	//	hide the thumbnail container div...
	previewContainer = document.getElementById('preview_container');
	previewContainer.style.visibility = "hidden";
}


function pm_contact(inName, inDomain)
{
	address='mailto:' + inName + '@' + inDomain;
	location = (address);
}