// Popup
// ----------------------------------------------------------

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,'scrollbars=yes,resizable=yes,width=450,height=520');
}


// Mailto
// ----------------------------------------------------------

function mlTo(Num, Type, ml2, ml1) {
	if(!ml1) {ml1 = "post";}
	if(!ml2) {ml2 = "htri.co.jp";}
	var mail = ml1 + "&#64;" + ml2;
	var ID = "mlTo" + Num;
	
	if(Type == 1) {
		document.getElementById(ID).innerHTML = "<a href=\"mailto:" + mail + "\">" + mail + "</a>";
		//メールアドレスのリンクが貼られる
	} else {
		var txt = document.getElementById(ID).innerHTML;
		document.getElementById(ID).innerHTML = "<a href=\"mailto:" + mail + "\">" + txt + "</a>";
		//現在の文章にリンクが貼られる
	}
}


// Blank
// ----------------------------------------------------------

$(function() {
  $("#main .articleDetail .section a").each(function(i) {
    var attr = $(this).attr('target');
    if(attr == '_blank') {
      $(this)
        .attr('class','blank')
        .attr('title','リンク先が別ウィンドウで開きます');
    }
  });
});



