function submitRequest(){
	document.awform1.bl.value = "";
   document.awform1.submit();
 }

 function browseAgendas(){
 	document.awform1.bl.value = "agenda";
 	document.awform1.submit();
 }

 function browseMeetings(){
 	document.awform1.bl.value = "meeting";
 	document.awform1.submit();
 }

  function browseProceedings(){
 	document.awform1.bl.value = "proceedings";
 	document.awform1.submit();
 }

  function browseTaskForce(){
 	document.awform1.bl.value = "task";
 	document.awform1.submit();
 }

function popupWindow(url){
      w = (screen.width) ? screen.width : 700;
      h = (screen.height) ? screen.height : 700;
      w =60*(w/100)
      //if(w>100) w = w-100;
      if(h>150) h= h-150;

      win1=open(url,"AWare","width="+w+",height="+h+",menubar=no,toolbar=no,scrollbars=yes,locationbar=no,resizable=yes");
      if (window.focus) {win1.focus()}
    return false;
}
function about(){
  alert('About Collection');
}
