/* メールをInPageのdialogueで送るための仕組み */
/* dialogue内のインラインフレームででJSPを呼ぶ */

$(function(){
	// Dialog			
	$('.mail_dialog_box').dialog({
		autoOpen: false,
		modal : true,
		width: 420,
		height:650,
		bgiframe:true ,
		resizable: false,
		buttons: {
		},
		close: function() {}
	 });
	
	// Dialog Link
	$('.mail_dialog').click(function(){
		var targetDialog = '#mail_dialog' + $(this).attr("id");

		if( $.browser.msie && jQuery.browser.version.substr(0,1)=="6" ) {
			$(targetDialog).css("margin-left","-30px");
		} else {
			$(targetDialog).css("margin-left","-35px");
		}

		$(targetDialog).html('<iframe width="420px" height="600px" style="overflow:hidden;" src="/c2ms/cb/sendmail.do?siteID=ebisu&amp;contentID='+ $(this).attr("id") + '&amp;clipType=\'\'&amp;linkUrl=&amp;mobileLinkUrl=&amp;mailType=&amp;toAddress="></iframe>');
		$(targetDialog).dialog('open');
		return false;
	});

});

	
