<!--
function DoZoom (path, w, h, name) {
	param = "toolbar=no,directories=no,scrollbars=yes,status=no,menubar=no,"+
	        "resizable=yes,"+"width="+(w+15)+",height="+h;
	NewWindow = window.open("", "photo"+(Math.round(Math.random()*100)), param);
	
    NewWindow.document.open();
	NewWindow.document.write('<html><head><title>'+name+'</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head>');
	NewWindow.document.write('<body style="margin: 0; padding: 0;" onload="this.focus()">');
	NewWindow.document.write('<img src="'+path+'" border="0" width="'+w+'" height="'+h+'"><br />');  
	NewWindow.document.write('</body></html>');
	NewWindow.document.close();
}


function SelectPage(form_name,page) {
        document.forms[form_name].page_number.value = page;
        document.forms[form_name].submit();
        return false;
}
function SortColumn (form_name, sort_id,sort_type) {
        document.forms[form_name].sort_column.value = sort_id;
        document.forms[form_name].sort_type.value = sort_type;
        document.forms[form_name].submit();
}

function textareaCounter(t){
	var textLength = t.value.length;

	if(textLength > 500){
		alert("Максимальное число символов в коментарии 500");
	t.value=t.value.substring(0,500);
	}

}
//-->
