function unescape_opera(text) 
{
	if(typeof(RegExp) == 'function') {
		re = /quot;/g;  
		newstr=text.replace(re, ''); 
		re = /&/g; 
		return newstr.replace(re, '"');  
	} 
	else return text;
}
function check_edit_Form() {
	formErrors = false;    
	if (document.search.query.value.length < 3) {formErrors = "The request line must contain at least 3 symbols!";}
	if (formErrors) 	{
				alert(formErrors);
				return false;
				}
				else
				{
				return true;
				}
}