//グローバルJavascriptファイル;
function viewSwf(URL,width,height){
	document.writeln("<object type='application/x-shockwave-flash' width='"+width+"' height='"+height+"' data='"+URL+"'>");
	document.writeln("<param name='movie' value='"+URL+"' />");
	document.writeln("<param name='wmode' value='transparent' />");
	document.writeln("<param name='quality' value='high' />");
	document.writeln("</object>");
}
function viewWmv(URL,width,height) {
	document.writeln("<object classid='CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6' width='"+width+"' height='"+height+"' standby='Loading Microsoft Windows Media Player components...' type=\'application/x-oleobject'>");
	document.writeln("<param name='URL' value='"+URL+"' />");
	document.writeln("<param name='AutoStart' value='true' />");
	document.writeln("<embed src='"+URL+"' type='application/x-mplayer2\' pluginspage='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&' PlayCount='0' width='"+width+"' height='"+height+"' />");
	document.writeln("</object>");
}
function myChgPic(myPicURL){
	document.getElementById("myBigImage").src = myPicURL;
}