function articleTest() {
	
	var returnValue = ''
	
	parent.document.getElementById('hide').className = 'visible';
	
	if (RightSide.offsetTop <= '200' && TabArticle.scrollWidth <= '800') {
		
		returnValue = 'ok'
			
	} else {
	
		returnValue = 'no'
	}
	
	if (returnValue == 'ok') {
	
		parent.document.article.action='article.asp';
		parent.document.article.target=''
		parent.document.article.submit();
		
	} else {
	
		parent.document.getElementById('hide').className = 'invisible';
		parent.document.getElementById('show').className = 'visible';
		
		alert('Článek nebyl uložen, kvůli špatnému formátování.');
		
	}
		
}
