function select_all(elem, arr_name)
{
	var checked = elem.checked;
	var f = elem.form;
	for (i=0;i<f.length;i++) {
		if (f.elements[i].name.indexOf(arr_name)!=-1 && f.elements[i].type.toLowerCase() == "checkbox" ) {
			f.elements[i].checked = checked;
		}
	}
}
function openimg(img,tit,wid,hei)
{
	  newWin=open("", "", "resizable=no,left=100,top=75,width="+wid+",height="+hei+",scrollbars=no,status=no,toolbar=no,menubar=no");
	  newWin.document.open();
	  
	  newWin.document.write("<html><head><title>"+tit+"</title></head>\r\n");
	  newWin.document.write("<body bottommargin=0 leftmargin=0 rightmargin=0 topmargin=0 bgcolor=#ffffff>\r\n");
	  newWin.document.write("<img src='"+img+"' alt='"+tit+"'  width='"+wid+"' height='"+hei+"'>\r\n");
	  newWin.document.write("</body></html>");
	
	  newWin.document.close();  
}
