function checkall(targetForm) {
  frm = document.forms[targetForm];
  for(n=0 ;n<frm.length;n++)
  { frm[n].checked = true; }
}



function notcheckall() {

  for(n=0 ;n<document.form.length;n++)

  { document.form[n].checked = false; }

}



function gotourl(path,targetForm) {

  frm = document.forms[targetForm];

  frm.action = path;

  frm.submit();

}



function popup(path,wTop,wLeft,wWidth,wHeight) {

  win = window.open(path,"","width="+wWidth+",height="+wHeight+",top="+wTop+",left="+wLeft);

  win.focus();

}



function popupwithstyle(path,wstyle) {

  win = window.open(path,"",wstyle);

  win.focus();

}



/*

function scroll_status (sval){ var msg = "";

var out = " "; var c = 1; if (150 < sval) { sval--;

var cmd="scroll_status(" + sval + ")";

tmx2 = window.setTimeout(cmd, 60); } else if (sval <= 150 && 0 < sval)

{ for (c=0 ; c < sval ; c++) { out+=" "; } out+=msg; sval--; var

cmd="scroll_status(" + sval + ")";

window.status=out; tmx2=window.setTimeout(cmd,60); } else if (sval <= 0) { if

(-sval < msg.length)

{ out+=msg.substring(-sval,msg.length); sval--; var cmd="scroll_status(" + sval

+ ")"; window.status=out;

tmx2=window.setTimeout(cmd,60); } else { window.status=" ";

tmx2=window.setTimeout("scroll_status(150)",25); }

*/

