//checkbox--function
var count;
function CheckboxChecked(check){
  for(count = 0; count < document.rssform.c1.length; count++){
    document.rssform.c1[count].checked = check;
  }
}
//--------------------------------------------------------------------
//pop up window
function openWindow1(theURL,width,height) { //v2.0
  //window.open(theURL,'subwindow','scrollbars=yes,width='+ width +',height='+ height +'');
  window.open(theURL,'subwindow','scrollbars=yes,width=500,height=500');
}

function openWindow2(theURL,width,height) { //v2.0
  //window.open(theURL,'subwindow','scrollbars=yes,width='+ width +',height='+ height +'');
  window.open(theURL,'subwindow','scrollbars=yes,width=500,height=500');
}

function openWindow3(theURL,width,height) { //v2.0
  //window.open(theURL,'subwindow','scrollbars=yes,width='+ width +',height='+ height +'');
  window.open(theURL,'subwindow','scrollbars=yes,width=500,height=500');
}
//--------------------------------------------------------------------
