function callswf(dir) {
	var file;

	switch (dir) {
		case 'child':
		file = '../flash/mail.swf';
		break;
		case 'parent':
		file = 'flash/mail.swf';
		break;
	}

	document.open();
	document.write('<object type="application/x-shockwave-flash" data="' + file + '" width="24" height="16" salign="TL" id="mail">');
	document.write('<param name="movie" value="' + file + '">');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="salign" value="TL">');
	document.write('<param name="bgcolor" value="#ffffff">');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<embed src="' + file + '" name="mail" quality="high" bgcolor="#ffffff" width="24" height="16" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
	document.write('<noembed><p><a href="http://www.macromedia.com/jp/shockwave/download/">ムービーをご覧になるには、FLASHプラグインのバージョン6以上が必要です。<br>お手数でございますが、最新のプラグインをインストールしてください。</a></p></noembed></embed>');
	document.write('</object>');
	document.close();
}

