function flashOpen(){
	var chs = Math.random()*65000;
	var thisW = 180;
	var thisH = 270;
	var serverURL = "http://letsblog.panasonic.jp/pc/blogparts/swf/";	
	var thisURL = "letsnote_blog_parts";
	var sTag = ''
		+ '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+thisW+'" height="'+thisH+'">'
		+ ' <param name="movie" value="'+serverURL+thisURL+'.swf?noCache='+chs+'">'
		+ ' <param name="noCache" value="'+chs+'">'
		+ ' <param name="quality" value="high">'
		+ ' <embed src="'+serverURL+thisURL+'.swf?noCache='+chs+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+thisW+'" height="'+thisH+'"></embed>'
		+ '	</object>'
		+ '';
	document.write (sTag);
}

flashOpen();