/* Flash Contents Express ------------------------------- */

function showSWF(PATH,TATE,YOKO) {
	TAG_object = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + YOKO + '" height="' + TATE + '" />'
	TAG_file = '<param name="movie" value="' + PATH + '" />'
	TAG_embed = '<embed src="' + PATH + '" quality="high" width="' + YOKO + '" height="' + TATE + '" wmode="transparent" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer_jp"></embed>'

	document.write(TAG_object);
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write(TAG_file);
	document.write('<param name="quality" value="high" />');
	document.write(TAG_embed);
	document.write('</object>');
}


/* ThumbNail Chenger ----------------------------------- */

function thumbChg(IDNAME, TNIMG) {
	document.getElementById(IDNAME).innerHTML = '<img src="' + TNIMG + '" alt="">';
}

function imgView1(IDNAME, BIGIMG, TXT) {
	document.getElementById(IDNAME).innerHTML = '<div><img src="' + BIGIMG + '" alt=""></div><p>' + TXT + '</p>';
}

function popExcuse(PATH) {
	win = window.open(PATH, "entry", "width=520, height=310, location=0, directories=0, scrollbars=1, resizable=1");
	win.focus();
}