<!--
function sendURLtoMobile(){
	
	var strMailUser = document.getElementById("txtMailUser").value;
	var oMailDomain = document.getElementById("selMailDomain");
	var strMailDomain = oMailDomain.options[oMailDomain.selectedIndex].value;
	
	if(strMailUser && strMailDomain){
		var strAjaxRequest = "&d=" + strMailDomain;
		strAjaxRequest+= "&u=" + strMailUser;
	
		//window.alert(strAjaxRequest);
		sendRequest(sentURLtoMobile,strAjaxRequest,'POST','/common/util/sendmail.php',true,true);
	}else{
		window.alert("メールアドレスを入力してください");
		return false;
	}
}
function sentURLtoMobile(obj){
	window.alert(obj.responseText);
}
function generateBlogTag(){
	
	var strMail = document.getElementById("txtMail").value;
	var strPassword = document.getElementById("txtPassword").value;
	
	if(strMail != "" && strPassword != ""){
		
		var strAjaxRequest = "&m=" + strMail;
		strAjaxRequest+= "&p=" + strPassword;
	
		//window.alert(strAjaxRequest);
		sendRequest(setBlogTag,strAjaxRequest,'POST','/common/util/getBlogTag.php',true,true);
	}else{
		window.alert("メールアドレスとパスワードを入力してください");
		
	}
//	return void(0);
}
function setBlogTag(obj){
	//window.alert(obj.responseText);
	document.getElementById("txtBlogTag").value = obj.responseText;
	}
-->