<!--画像サブ画面用スクリプト　開始-->
function openDetailWindow(strFileName,strProductName,strComment){
	var strDate       = new Date();
	var strWindowName =strDate.getHours()+"時"+strDate.getMinutes()+"分"+strDate.getSeconds()+"秒";

	subWin = window.open("http://www.osamu-factory.jp/picture.html", strWindowName ,"width=550,height=500"); 
	var strOpenUrl="<img src='http://www.osamu-factory.jp/eternal/etr-logo1.gif' alt='エターナル' /><br /><img src='http://www.osamu-factory.jp/eternal/"+strFileName+ "' alt='商品写真' /><br /><strong>"+strProductName+"</strong><br />"+strComment;

	subWin.document.open();
	subWin.document.write("<div align='center'>");
	subWin.document.write(strOpenUrl);
	subWin.document.write("</div>");
	subWin.document.close(); 
}
<!--画像サブ画面用スクリプト　終了-->


<!--カレンダ用文字列作成　開始-->
function createCalendar(strBlogURL, strBlogID, path){

	var ymd = new Date();
	var strYear = ymd.getFullYear();
	var strMonth   = ymd.getMonth() + 1;
	if( strMonth < 10) {
		strMonth = "0" + strMonth;
	}

	return getCalendar(strBlogURL, strBlogID, path);

}

<!--カレンダ用文字列作成　終了-->

