
function Memo()
{
 var fobj = document.myFORM;

 var tName = "お名前=";
 var wName = fobj.name.value;

 var tMail = "メール=";
 var wMail = fobj.mail.value;

 var tAge = "年齢=";
 var wAge = fobj.age.options[fobj.age.selectedIndex].value;

 var tSex = "性別=";
 var wSex = fobj.SEX.options[fobj.SEX.selectedIndex].value;

 var tWork = "お仕事=";
 var wWork = fobj.work.options[fobj.work.selectedIndex].value;

 var tArea = "お住い=";
 var wArea = fobj.aria.options[fobj.aria.selectedIndex].value;

 var tPay = "希望収入=";
 var wPay = fobj.pay.options[fobj.pay.selectedIndex].value;

 var tLink = "お知りなたったのは=";
 var wLink = fobj.link.options[fobj.link.selectedIndex].value;

 var tTitle = "その名前=";
 var wTitle = fobj.title.value;

 var tMemo = "コメント=";
 var wMemo = fobj.memo.value;

 document.myFORM2.mymemo.value = tName+wName+"\n"+tMail+wMail+"\n"+tAge+wAge+"\n"+tSex+wSex+"\n"+
 tWork+wWork+"\n"+tArea+wArea+"\n"+tPay+wPay+"\n"+tLink+wLink+"\n"+tTitle+wTitle+"\n"+tMemo+wMemo;

 return true;
}

