function ScrollToElement(theElement)
{

  var selectedPosX = 0;
  var selectedPosY = 0;
              
  while(theElement != null){
    selectedPosX += theElement.offsetLeft;
    selectedPosY += theElement.offsetTop;
    theElement = theElement.offsetParent;
  }
                        		      
 window.scrollTo(selectedPosX,selectedPosY - 100);
}

function quoteComment(commentId, author)
{
	var comment = document.getElementById("comment-" + commentId);
	var commentText = document.getElementById("commentText-" + commentId);

	var commentTextarea = document.getElementById("words");
	
	commentTextarea.value = '<blockquote cite="#comment-' + commentId + '"><p><strong>' + 
		author + ' <a href="#comment-' + commentId + '">говорит</a>:</strong></p>' +
		commentText.innerHTML + '</blockquote>';
		
	ScrollToElement(commentTextarea);
}