/********************************

********************************/
function onMobileGuideMail( oForm ){

	var oSelect 		= oForm.regist_mail_magazine_domain;// $( "regist_mail_magazine_domain" );
	var nSelectIndex 	= oSelect.selectedIndex;
        //表示されているテキスト
        var sDomain 	= oSelect.options[ nSelectIndex ].text;
	//
	var sAddress 		= oForm.regist_mail_magazine_address.value;

//	var sMailAddress	= sAddress + "@" + sDomain;
/*
	var data = "";
	data 	= 'sid=1008&day=' + day;
	url 	= "./common/php/schedule_info_list.php";
	var myAjax = new Ajax.Request( url, { method: 'post', parameters: data, onComplete: callBack });
*/

        $.ajax({
            url 	: "/common/php/mobile_guide.php",
            type 	: "post",
            data 	: ( { sid: 1008, address : sAddress, domain : sDomain }),
            success	: onMobileGuideMailCallBack
//		function( request ) {
//              	$('#result').html(request);
//            	}
        });

}
/********************************

********************************/
function onMobileGuideMailCallBack( xmlhttp ){
	alert( xmlhttp );
}