function OpenImg(src,alt,width,height) {

  var scbr = 'no';
  var w = width;
  var h = height;

  if (width>=(document.body.clientWidth-20)) {
	w = document.body.clientWidth-20;
	scbr = 'yes';
  }

  if (height>=(document.body.clientHeight-20)) {
	h = document.body.clientHeight-20;
        if (w<(document.body.clientWidth-20)) w = w-0+16;
	scbr = 'yes';
  }

  image = window.open('','','left=10,top=10,toolbar=no,width='+w+',height='+h+',resizable=no,scrollbars='+scbr+',status=no,menubar=no,dialog=yes');
  image.focus();
  image.document.write('<html><head><title>SANCHOP</title></head><body style="cursor: hand; cursor: pointer; margin: 0px; padding: 0px; background: url(\'images/cz/engine/loading_image.jpg\') center center no-repeat #ffffff;"><img id="img" src="'+src+'" width="'+width+'" height="'+height+'" alt="'+alt+'" border="0" onClick="window.close();"></body></html>');
  image.document.close();

}


function ControlUserDataStepDisable(bDisabled){
	document.UserDataFormStep.deliver_title.readOnly = bDisabled;
	document.UserDataFormStep.deliver_street.readOnly = bDisabled;
	document.UserDataFormStep.deliver_city.readOnly = bDisabled;
	document.UserDataFormStep.deliver_zip.readOnly = bDisabled;
	document.UserDataFormStep.deliver_state.readOnly = bDisabled;
	document.UserDataFormStep.deliver_name.readOnly = bDisabled;
	document.UserDataFormStep.deliver_surname.readOnly = bDisabled;
	document.UserDataFormStep.deliver_email.readOnly = bDisabled;
	document.UserDataFormStep.deliver_telefon.readOnly = bDisabled;
	if(bDisabled == true){
		document.UserDataFormStep.deliver_title.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_street.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_city.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_zip.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_state.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_name.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_surname.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_email.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.deliver_telefon.style.backgroundColor = '#E8E8E8';
	}
	else{
		document.UserDataFormStep.deliver_title.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_street.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_city.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_zip.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_state.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_name.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_surname.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_email.style.backgroundColor = 'white';
		document.UserDataFormStep.deliver_telefon.style.backgroundColor = 'white';
	}

}


function ControlUserStepDisable(){
  
  var aDisabled;
  var bDisabled;
  
  if(document.UserDataFormStep.user_or_firma.checked == true)
    aDisabled=true;
  else
    aDisabled=false;
    
  if(document.UserDataFormStep.user_or_firma.checked == true)
    bDisabled=false;
  else
    bDisabled=true;
  
	document.UserDataFormStep.user_name.readOnly = aDisabled;
	document.UserDataFormStep.user_surname.readOnly = aDisabled;
	document.UserDataFormStep.user_title.readOnly = aDisabled;
	document.UserDataFormStep.user_street.readOnly = aDisabled;
	document.UserDataFormStep.user_city.readOnly = aDisabled;
	document.UserDataFormStep.user_zip.readOnly = aDisabled;
	document.UserDataFormStep.user_state.readOnly = aDisabled;
	document.UserDataFormStep.user_email.readOnly = aDisabled;
	document.UserDataFormStep.user_telefon.readOnly = aDisabled;
	if(aDisabled == true){
		document.UserDataFormStep.user_name.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_surname.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_title.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_street.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_city.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_zip.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_state.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_email.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.user_telefon.style.backgroundColor = '#E8E8E8';
	}
	else{
		document.UserDataFormStep.user_name.style.backgroundColor = 'white';
		document.UserDataFormStep.user_surname.style.backgroundColor = 'white';
		document.UserDataFormStep.user_title.style.backgroundColor = 'white';
		document.UserDataFormStep.user_street.style.backgroundColor = 'white';
		document.UserDataFormStep.user_city.style.backgroundColor = 'white';
		document.UserDataFormStep.user_zip.style.backgroundColor = 'white';
		document.UserDataFormStep.user_state.style.backgroundColor = 'white';
		document.UserDataFormStep.user_email.style.backgroundColor = 'white';
		document.UserDataFormStep.user_telefon.style.backgroundColor = 'white';
	}
	
	
	
  document.UserDataFormStep.firma_name.readOnly = bDisabled;
	document.UserDataFormStep.firma_street.readOnly = bDisabled;
	document.UserDataFormStep.firma_city.readOnly = bDisabled;
	document.UserDataFormStep.firma_zip.readOnly = bDisabled;
	document.UserDataFormStep.firma_state.readOnly = bDisabled;
	document.UserDataFormStep.firma_email.readOnly = bDisabled;
	document.UserDataFormStep.firma_telefon.readOnly = bDisabled;
	document.UserDataFormStep.firma_ico.readOnly = bDisabled;
	document.UserDataFormStep.firma_dic.readOnly = bDisabled;
	document.UserDataFormStep.firma_ucet.readOnly = bDisabled;
	if(bDisabled == true){
	  document.UserDataFormStep.firma_name.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_street.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_city.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_zip.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_state.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_email.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_telefon.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_ico.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_dic.style.backgroundColor = '#E8E8E8';
		document.UserDataFormStep.firma_ucet.style.backgroundColor = '#E8E8E8';
	}
	else{
	  document.UserDataFormStep.firma_name.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_street.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_city.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_zip.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_state.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_email.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_telefon.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_ico.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_dic.style.backgroundColor = 'white';
		document.UserDataFormStep.firma_ucet.style.backgroundColor = 'white';
	}

}
