function GetDate(){
	var Today = "";
	var MyDate = new Date();
	Today += MyDate.getMonth()+1;
	Today += ConvertToStr( MyDate.getDate() );
	return Today;
}
function ConvertToStr( Num ){
	var Digit = "";
	if( Num < 10 ) Digit = "0";
	return Digit + Num;
}
function PrintBenmoCode( Date, Width, Height ){
	//いつもの
	var URL = "benmo201.swf";
	//ハロウィン
	if( 1025<= Date && Date<= 1031 ) URL="benmo113Halloween.swf";
	//クリスマス
	if( 1219<= Date && Date<= 1225 ) URL="benmo201Christmas.swf";
	//四月馬鹿
	if( Date == 401 ) URL="benmo201AprilFool.swf";
	
	URL = "http://flash-scope.com/benmo/"+URL;
	
	document.write("<object type=\"application/x-shockwave-flash\" data=\""+URL+"\" width=\""+Width+"\" height=\""+Height+"\" class=\"blogparts\">ブログパーツ『おみくじ』：http://flash-scope.com/<param name=\"movie\" value=\""+URL+"\" /><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\" /></object>");
}
PrintBenmoCode( parseInt( GetDate() ), 150, 170 );
