function PutImage()
{
	///////////////////////////////////////////////////////////////////////////////
	// 28日が土日だった場合の処理（0:変更無し 1:土日なら金に変更 2:日なら土に変更）
	var mode = 0;
	///////////////////////////////////////////////////////////////////////////////

	var base_yy = 2006;
	var base_mm = 1;
	var base_num = 86;
	var img_width = 70;
	var img_height = 100;
	var check_date = 28;

	var mNowDate = new Date();
	var yy = mNowDate.getYear();
	var mm = mNowDate.getMonth() + 1;
	var dd = mNowDate.getDate();

	var dt = new Date( yy,mm-1,28 );

	switch( mode )
	{
	case 0:
		break;
	case 1:
		if( dt.getDay()==0 )
			check_date -= 2;
		if( dt.getDay()==6 )
			check_date--;
		break;
	case 2:
		if( dt.getDay()==0 )
			check_date -= 1;
		break;
	}

	var after_month = ( yy*12+mm ) - ( base_yy*12+base_mm );

	var pic_num = base_num + after_month;
	if( dd>=check_date )
		pic_num++;

	var i;
	var str_num = pic_num.toString();
	var len = str_num.length;
	for( i=0;i<len;i++ ) {
		str_num = "0" + str_num;
	}

//	document.write( "chorus" + str_num + "_h.jpeg<BR>" );
	document.write( '<a href="http://chorus.shueisha.co.jp/" target="_blank"><IMG src="http://www.shueisha.co.jp/magazine/ladyc/jpg/chorus' + str_num + '_h.jpeg" width="' + img_width + '" height="' + img_height + '" border="1"></a>' );
}
