var absolute = 3800;

function textCounter(field,field1,field2,field3,field4,field5,field6,field7,countfield, maxlimit) {
   var field_length = field1.value.length + field2.value.length + field3.value.length + field4.value.length + field5.value.length + field6.value.length + field7.value.length;
   var field_length_ohnefield = maxlimit - (field_length - field.value.length);
   absolute = maxlimit-field_length;
   
   //var leftlimit = field_length;
	
	
	//if (field_length > maxlimit) {
	if (absolute < 0) {
        //field.value = field.value.substring(0, maxlimit);
		field.value = field.value.substring(0, field_length_ohnefield);
		absolute = 0;
		//alert(maxlimit +" - "+field_length+ " = "+absolute);
    } else {
        //countfield.value = maxlimit-(field.value.length);
		countfield.value = absolute;
    }
}


function openWin(url) {
	pro = window.open(url,"New","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width=600,height=300");
	pro.window.focus();
}

function show_div(showDiv,hideDiv){
	if(document.getElementById(showDiv).className != "divShow"){
		document.getElementById(showDiv).className = "divShow";
		if(hideDiv!="")document.getElementById(hideDiv).className = "divHide";
	}		
}


function show_others(){
	if(document.offerForm.title_office.value=="others"){
		show_div('others_div','');
	}
	else{
		document.getElementById('others_div').className = "divHide";
	}	
}


function show_voucher(showDiv){
	if(document.getElementById(showDiv).className == "divShow")
		document.getElementById(showDiv).className = "divHide";
		
	if(document.getElementById(showDiv).className == "divHide")
		document.getElementById(showDiv).className = "divShow";
	
}