function showFlash(file_src, width, height)
	{
	flash_txt = '<object width="' + width + '" height="' + height + '">';
	flash_txt += '<param name="movie" value="' + file_src + '" />';
	flash_txt += '<param name="quality" value="high" />';
	flash_txt += '<embed src="' + file_src + '" quality="high" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '">';
	flash_txt += '</embed>';
	flash_txt += '</object>';

	return flash_txt;
	}


function showLinks(id)
	{
	var the_id = document.getElementById(id);
	if(the_id.style.display == 'none') the_id.style.display = 'block';
	else the_id.style.display = 'none';
	}


function email(user, host)
	{
	var return_txt = user + '@' + host;

	return return_txt;
	}


function email_link(user, host)
	{
	var return_txt = '<a href="mailto:' + user + '@' + host + '">' + user + '@' + host  + '</a>';

	return return_txt;
	}


