function checkUncheckAll_i(theElement)
{
    var theForm = theElement.form, z = 0;
	 
	 for(z=0; z<theForm.length;z++)
	 {
      if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall' && theForm[z].name.length < 7)
		{
	  		theForm[z].checked = theElement.checked;
	   }
    }
}

function checkUncheckAll_b(theElement)
{
    var theForm = theElement.form, z = 0;
	 
	 for(z=0; z<theForm.length;z++)
	 {
      if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall' && theForm[z].name.length > 6)
		{
	  		theForm[z].checked = theElement.checked;
	   }
    }
}

function QuickJump(langform)
{
 var Element = langform.select.selectedIndex;
 if (langform.select.options[Element].value != 0) 
 {
  location = langform.select.options[Element].value;
 } 
}

function openwindow(image)
{
	var widthx = 640;
	var heightx = 480;
	window.open(image,"_blank","status=no,toolbar=no,menubar=no,location=no,resizable=yes,width=" + widthx + ", height=" + heightx + "");
}