
// JavaScript Document

function contactTypeOutput( contactType, id, itemtype, limitedTime ) {

	// 画像サイズ
	var imgWidth = 210;
	var imgHeight = 42;

	// 月の取得
	myDate = new Date();
	myMonth = myDate.getMonth() + 1;

	// リストの生成
	document.write( "<div id=\"order\">" );

	var twoMonthLater = limitedTime - myMonth;

	if( contactType == "contact_wedding" ) {

		// お問い合わせ: ウェディング
		var alternateText = "お問い合わせ";
		document.write( "<a href=\"/" + contactType + "/index.php?id=" + id +  itemtype + "\" id=\"btn_order\">" );
		document.write( "<img src=\"../../common/img/btn_contact.gif\" alt=\"" + alternateText + "\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" />" );

	} else if( contactType == "custommade" ) {

		// カスタムメイド制作
		var alternateText = "カスタムメイド制作";
		document.write( "<a href=\"/contact/index.php?id=" + id + "\" id=\"btn_order\">" );
		document.write( "<img src=\"../../../common/img/btn_" + contactType + ".gif\" alt=\"" + alternateText + "\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" />" );

	} else {

		// お問い合わせ
		var alternateText = "お問い合わせ";
		document.write( "<a href=\"/contact/index.php?id=" + id + "\" id=\"btn_order\">" );
		document.write( "<img src=\"../../common/img/btn_contact.gif\" alt=\"" + alternateText + "\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" />" );

	}

	document.write( "</a>" );
	document.write( "</div>" );

}
