function setCookie(name,value,expires,path,domain,secure)
{ var today = new Date();
  today.setTime(today.getTime());
  if(expires)
  expires=expires*1000*60*60*24;
  var expires_date=new Date(today.getTime()+(expires));
  document.cookie=name+'='+escape(value)+
  ((expires)?';expires='+expires_date.toGMTString():'')+
  ((path)?';path='+path:';path=/')+
  ((domain)?';domain='+domain:'')+
  ((secure)?';secure':'');
}
function open_imgwindow(src,title,w,h,css)
{ css=css||'/templates/admin/imagewin.css';
  var newWin = window.open('','popupimage','width='+(w+30)+',height='+(h+50)+',Left='+Math.ceil(document.body.clientWidth/2-w/2)+',Top='+Math.ceil(document.body.clientHeight/2-h/2)+',menubar=no,location=no,resizable=yes,scrollbars=no');
  newWin.document.open();
  newWin.document.write('\
  <html>\
  <head>\
  <title>'+title+'</title>\
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\
  <link rel="stylesheet" href="'+css+'" type="text/css">\
  </head><body>\
  <table width="100%" border="0" cellspacing="0" cellpadding="0">\
  <tr><td align="center"><img src="'+src+'" border="0"></td></tr>\
  <tr><td align="center"><h5 style="padding:0xp;margin:0px;">'+title+'</h5></td></tr>\
  <tr><td align="center"><a href="javascript:window.close()">Закрыть</a></td></tr>\
  </table>\
  </body>\
  </html>');
  newWin.document.close();
  newWin.focus();
}
function setimg(pref,id)
{ for(i=0;i<20;i++)
  { if(i==id)
    { $('#image'+pref+i).show();
      $('#imagelink'+pref+i).addClass('w90_active');
    }
    else
    { $('#image'+pref+i).hide();
      $('#imagelink'+pref+i).removeClass('w90_active');
    }
  }
}
function showcomments()
{ if($('#comments').is(":visible"))
  { $('#comments').hide('slow');
    $('#sclink').html('Показать отзывы');
    setCookie('commentsmode',0,500,'/');
  }
  else
  { $('#comments').show('slow');
    $('#sclink').html('Скрыть отзывы');
    setCookie('commentsmode',1,500,'/');
  }
}
function showcomments2()
{ if($('#comments').is(":visible"))
  { $('#comments').hide('slow');
    $('#sclink').html('Показать комментарии');
    setCookie('commentsmode',0,500,'/');
  }
  else
  { $('#comments').show('slow');
    $('#sclink').html('Скрыть комментарии');
    setCookie('commentsmode',1,500,'/');
  }
}
function comment_form(form)
{ if(form.name.value.replace(/\s+/,'').length==0)
  { alert("Пожалуйста, заполните имя."); return false; }
  if(form.message.value.replace(/\s+/,'').length==0)
  { alert("Пожалуйста, заполните сообщение."); return false; }
  return true;
}
$(document).ready(
	function() {
		$(document).keypress(
			function(e) {
				if (((e.ctrlKey == true) && (e.keyCode == 13))||e.keyCode==10) {
					var selectedText = window.getSelection();
					var osh=prompt('Сообщить об ошибке? \n"'+selectedText+'" \n\n Пояснения к ошибке');
					if(selectedText.toString()!='' && osh)
					{ $.post("/send.php",{text:selectedText.toString(),surl:window.location.href,mistake:osh},function(msg) {/*alert(msg);*/ }	);
					}
				}
			}
		);
	}
);

