<!--

	function redirect(){

		history.go(-1);

	}
	
	////////////////////////////////////////////////////////////////////////////
	// CoUNT CHARACTERS
	////////////////////////////////////////////////////////////////////////////		
	
	function textCounter(){
	
		field = eval(document.form_article.description);
		maxlimit = 255;
		
		/*
		theTextValue = field.value;
		alert(theTextValue);
		theTextLength = field.value.length;
		alert(theTextLength);
		*/
		
		if (field.value.length > maxlimit){
	
			field.value = field.value.substring(0, maxlimit);
			//alert(field.value);
			alert("Exceed max characters.");
	
		}
		
	}

-->