  $(document).ready(function(){
    $("#tableswitch > ul").tabs();
	
	
  });
  
  
  function CheckAll(form, mark, input_id) {
    if (!input_id) input_id = 'checkbox';
	$(":checkbox[@id='"+ input_id +"']", form).each(function(el){
		if (!this.checked) this.checked = mark;
	});  
  }
  
  function Message(dialogTitle, message) {
  		alert(message)
  }
  
  function popup(href, width, height) { 
       var options = 'width='+ width +',height='+ height +',resizable=yes,scrollbars=yes,toolbar=no,left='+ ((screen.width-width)/2) +',top='+ ((screen.height-height)/2) +'';
       var popup = window.open(href, '_blank', options);
  }