function on_box() {
          a = document.getElementsByTagName("input");
		  for(i=0; i<a.length; i++){
                   a[i].checked = true;
                   }
}

function off_box() {
          a = document.getElementsByTagName("input");
          for(i=0; i<a.length; i++){
                   a[i].checked = false;
                   }
          }
		  
function confirmLink_Text(theLink, text)
{
 qs = confirm(text);
 if(qs)
 {
  window.location=theLink;
 }
}
 function textCounter(field, countfield, maxlimit)
 {
  if (field.value.length > maxlimit)
   field.value = field.value.substring(0, maxlimit);
  else
   countfield.value = maxlimit - field.value.length;
 }

function confirmLink(theLink)
{
 qs = confirm("Usunięcie jest nieodwracalne.\nCzy napewno usunąć?");
 if(qs)
 {
  window.location=theLink;
 }
}

function OpenWindow(theURL,winName,w,h,scroll)
{
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
  window.open(theURL,winName,settings);
}



function OpenFormatWindow(theURL,winName,w,h,scroll)
{
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
pop = window.open(theURL,winName,settings);
pop.document.write('<title>GALERIA</title><body bgcolor="white" topmargin="0" leftmargin="0"><center>');
pop.document.write('<a href="javascript:window.close();"><img src="'+theURL+'" alt="Zamknij okno" border=0></a></center>');
pop.document.write('</body>');
}
