
function chr(char_code)
	{
	return String.fromCharCode(char_code);
	}


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 += '<param name="wmode" value="transparent" />';
	flash_txt += '<embed src="' + file_src + '" quality="high" wmode="transparent" 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)
	{
	return user + '@' + host;
	}

