function cookie_pager(data)
{
	 document.cookie = "pager="+data;
	 location.reload();
}
function view_list(pos)
{
     document.getElementById('list').style.cssText = 'position:absolute; top:'+pos+'px;';
}

function nlist()
{
     document.getElementById('list').style.display = 'none';
}

function count_symbol(name_form,count_form,max_length)
{
	 if (document.getElementById(name_form).value.length<max_length)
	 {
		  document.getElementById(count_form).style.cssText = "color: #677781;";
		  if(navigator.appName=='Opera')
		       document.getElementById(count_form).style = "color: #677781;";
		  
	      document.getElementById(count_form).value = max_length - document.getElementById(name_form).value.length;
	 }
	 else
	 {
	      document.getElementById(name_form).value = document.getElementById(name_form).value.substr(0,max_length)
		  
		  document.getElementById(count_form).value = 0;
		  
		  document.getElementById(count_form).style.cssText = "color: #FF0000;";
		  if(navigator.appName=='Opera')
		       document.getElementById(count_form).style = "color: #FF0000;";
	 }
}

function view_list(pos)
{
     document.getElementById('list').style.cssText = 'position:absolute; top:'+pos+'px;';
}

function nlist()
{
     document.getElementById('list').style.display = 'none';
}

