function newWin() {
var target = document.getElementById("mail2");
var idoc = null;
if( target.contentDocument ) {
	idoc = target.contentDocument;
} else {
	idoc = document.frames["mail2"].document;
}
idoc.open();
idoc.writeln("<html><head>");
idoc.writeln("<script language=javascript type=text/javascript>");
idoc.writeln("function mailad(){");
idoc.writeln("	Mad = parent.document.mag2.mail.value;");
idoc.writeln("	document.form1.email.value = Mad;");
idoc.writeln("}");
idoc.writeln("function name(){");
idoc.writeln("	Name = parent.document.mag2.name.value;");
idoc.writeln("	document.form1.name.value = Name;");
idoc.writeln("}");
idoc.writeln("</script></head>");
idoc.writeln("<body onLoad=mailad() style=padding:0px; margin:0px; font:90%;>");
idoc.writeln("<p style=padding:0px; margin:0px; align=center><img src=http://www.magarepo.com/images/arrow.gif alt=下の無料レポート申込フォームにもご記入ください align=center hspace=0 vspace=0 border=0 /></p>");
idoc.writeln("<form name=form1 method=post action=http://www.magarepo.com/index.cgi style=padding:0px; margin:0px;>");
idoc.writeln("<input type=hidden name=mode value=mail2>");
idoc.writeln("<input type=hidden name=rid value=92>");
idoc.writeln("<input type=hidden name=code value=utf8>");
idoc.writeln("<p>無料レポートのご請求はこちらから！<br />");
idoc.writeln("お名前<br />");
idoc.writeln("<input name=name type=text size=20 class=z><br />");
idoc.writeln("メールアドレス<br />");
idoc.writeln("<input name=email type=text size=20 class=h><br />");
idoc.writeln("<input name=submit type=submit value=送信></p>");
idoc.writeln("</form></body></html>");
idoc.close();
var flag = 0; 
if(!document.mag2.mail.value.match(/.+@.+..+/)){ 
	flag = 1; 
} 
if(flag){ 
window.alert("メールアドレスが正しくありません");
	document.mag2.mail.focus();
	document.mag2.mail.select();
} else {
	mail2.focus();
	idoc.form1.name.focus();
}
}
