function send()
{
forwardWindow = window.open('http://www.dunatv.hu/hires_magyarok_form', 'forward','width=504,height=430,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0' );
 forwardWindow.focus();


}	

	function displayNews(divId, imgId)
	{
		
		var div = jQuery('#'+divId);
		var imgO = jQuery('#'+imgId);
		var isOpen = div.css('display') == 'block';
		
		if (isOpen) {
			closeNDiv(div, imgO);
		} else {
			openNDiv(div, imgO);
		}
	}
	
	function closeNDiv(div, imgO)
	{
		div.animate(
			{ height: 'hide' },
			1000
		);
		imgO.attr('src','/sites/dunatv/images/new/news-uparrow.png');
	}
	
	function openNDiv(div, imgO)
	{
		div.animate(
			{ height: 'show' },
			1000
		);
		imgO.attr('src','/sites/dunatv/images/new/news-downarrow.png');
	}

