	function Zoom(xlink,x,y){
		x1=x+20;
		y1=y+40;
		window.open(xlink,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height='+y1+',width='+x1);
	} //func
	
	function ImageZoom(xlink,x,y){
		x1=x+45;
		y1=y+100;
		window.open(xlink,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height='+y1+',width='+x1);
	} //func	


function initOverLabels () {
  if (!document.getElementById) return;  	

  var labels, id, field;

  labels = document.getElementsByTagName('label');
  for (var i = 0; i < labels.length; i++) {
	
    if (labels[i].className == 'overlabel' || labels[i].className == 'overlabel-apply') {

      id = labels[i].htmlFor || labels[i].getAttribute('for');
      if (!id || !(field = document.getElementById(id))) {
        continue;
      }

      labels[i].className = 'overlabel-apply';

      if (field.value !== '') {
        hideLabel(field.getAttribute('id'), true);
      }

      field.onfocus = function () {
        hideLabel(this.getAttribute('id'), true);
      };
      field.onblur = function () {
        if (this.value === '') {
          hideLabel(this.getAttribute('id'), false);
        }
      };

      labels[i].onclick = function () {
        var id, field;
        id = this.getAttribute('for');
        if (id && (field = document.getElementById(id))) {
          field.focus();
        }
      };

    }
  }
}

function hideLabel (field_id, hide) {
  var field_for;
  var labels = document.getElementsByTagName('label');
  for (var i = 0; i < labels.length; i++) {
    field_for = labels[i].htmlFor || labels[i].getAttribute('for');
    if (field_for == field_id) {
      labels[i].style.textIndent = (hide) ? '-1000px' : '0px';
      return true;
    }
  }
}

function registration(mne) {
	var el1 = document.getElementById(mne);
	el1.className = (el1.className == 'wtf2' ? 'wtf3' : 'wtf2')
}

