KST016.inc
483 Bytes
<SCRIPT LANGUAGE="JAVASCRIPT">
<!--
function NewMSG_disp(fName){
if(document.e_gru.new_disp.checked == true){
prm=1;
}else{
prm=0;
}
httpObjNewMSG = createXMLHttpRequest(displayDataNewMSG);
if (httpObjNewMSG)
{
fName = fName + "?new_disp="+prm;
httpObjNewMSG.open(Get_BName(),fName,true);
httpObjNewMSG.send(null);
}
}
function displayDataNewMSG()
{
if ((httpObjNewMSG.readyState == 4) && (httpObjNewMSG.status == 200)){
alert("ÀßÄꤷ¤Þ¤·¤¿");
}
}
-->
</SCRIPT>