
function link_psp ( psp_no, product_nm ) {
  //document.frm.PSP_NO.value = psp_no;
  //document.frm.DI_NAME.value = product_nm;
  var url_base = "";
  var host_name = location.hostname;
  if(location.hostname=="di-test.e-mediagate.jp"){
    host_name = "pre.mediasolution.jp";
  }else if(location.hostname=="di.taiho.co.jp"){
    host_name = "db.taiho.co.jp";
  }
  url_base = location.protocol + "//" + host_name;
  document.frm.action = url_base + "/psp/do/ttools/PspSearchExec?itemName="+product_nm;
  document.frm.target = "ttools";
  document.frm.submit();
}

function link_faq_new ( di_no ) {
  document.frm.DI_NO.value = di_no;
  document.frm.action = "/faq/faq_usr_list.php";
  document.frm.target = "_top";
  document.frm.submit();
}

function cngColor(elm,color) {
	elm.style.backgroundColor = color;
}
