// Flashのon pressで呼出される
function flash2lightbox(imagepath) {
	var a = document.getElementById("photo");
	var f = new Array()
	a.setAttribute('href', imagepath);
	myLightbox.start(a);
}
function showflash(){
	document.write('<object type="application/x-shockwave-flash" data="images/concept.swf" wmode="transparent" width="900" height="500">');
	document.write('<param name="movie" value="images/concept.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('</object>');
}
showflash();