function clock() {
var width = 0;
var height = 0;

	if (_size == "s") {
		width = 110;
		height = 15;
	} else if (_size == "m") {
		width = 140;
		height = 20;
	} else if (_size == "l") {
		width = 160;
		height = 23;
	} else if (_size == "ll") {
		width = 180;
		height = 25;
	}

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" >');
document.write('<param name="movie" value="http://www.shiawase-moment.com/flash/clock_'+_color+'_'+_size+'.swf">');
document.write('<param name="salign" value="LT">');
document.write('<param name="quality" value="high">');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="bgcolor" value="#FFFFFF">');
document.write('<param name="menu" value="false">');
document.write('<param name="scale" value="noscale">');
document.write('<param name="allowScriptAccess" value="always">');
document.write('<embed src="http://www.shiawase-moment.com/flash/clock_'+_color+'_'+_size+'.swf" quality="high" scale="noscale" wmode="transparent" bgcolor="#FFFFFF" width="'+width+'" height="'+height+'" salign="LT" allowScriptAccess="always" type="application/x-shockwave-flash" pluginpages="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object>');
}