function OpenMailWds( code ){
	url = "https://www.am.mufg.jp/cgi-bin/mail_entry/mail_entry2.cgi?code=" + code;
	var width = 700;
	var height = 600;
	var options = "scrollbars=yes,menubar=no,toolbar=no,location=no,status=yes,resizable=yes";
	var name = "mail_entry";
	var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}