// JavaScript Document




	//KÉPEK ELŐTÖLTÉSE--------------------------------------------------------------------------------
	bg_menu2 = new Image();
	bg_menu2.src = "/images/common/menubg2.gif";
	//KÉPEK ELŐTÖLTÉSE--------------------------------------------------------------------------------

	

	
	//TELEPÜLÉS SELECT FRISSÍTÉSE----------------------------------------------------------------------
	function TelepulesUpdate()
	{		
		$('body').css('cursor','progress');
		
		$.post("/scripts/system_ajax.php?action=telepulesupdate",	{			

																megyeid: $('#megye').val()
															
														}, function(data){
				$('#ajaxtemp').html(data);
				$('body').css('cursor','auto');
				
				
		});
		
	}
	//TELEPÜLÉS SELECT FRISSÍTÉSE----------------------------------------------------------------------
	
	
	
	
	//MENÜ ON-----------------------------------------------------------------------------------------
	function MenuOn()
	{

		menu_pos = $('#menu_button').position().left;
		menu_pos_y = $('#menu_button').position().top;
		
		$('#menu_box').css('left', (menu_pos - 67) + 'px');
		$('#menu_box').css('top', (menu_pos_y + 33) + 'px');
		$('#menu_box').show();
	}
	//MENÜ ON-----------------------------------------------------------------------------------------
	
	
	
	
	//MENÜ OFF-----------------------------------------------------------------------------------------
	function MenuOff()
	{
		$('#menu_box').hide();
	}
	//MENÜ OFF-----------------------------------------------------------------------------------------
	
	
	
	
	//ADS DIVEK TÖLTÉSE MEZŐ TARTALMÁVAL---------------------------------------------------------------
	function AdsTolt(forras, cel, hiv)
	{		
		if(hiv == 1)
		{
			$('#' + cel).html( '<a href="http://' + $('#url').val() + '" target="_blank">' + $('#' + forras).val() + '</a>' );	
		}
		else
		{
			$('#' + cel).html( $('#' + forras).val() );	
		}
	}
	//ADS DIVEK TÖLTÉSE MEZŐ TARTALMÁVAL---------------------------------------------------------------
	
	
	
	
	
	
	//ADS HIVATKOZÁS FELTÖLTÉS---------------------------------------------------------------------------
	function AdsUrl()
	{
		$('#fejlec_txt').html( '<a href="http://' + $('#url').val() + '" target = "_blank">' + $('#fejlec').val() + '</a>' );
		$('#hivatkozas_txt').html( '<a href="http://' + $('#url').val() + '" target = "_blank">' + $('#hivatkozas').val() + '</a>' );
	}
	//ADS HIVATKOZÁS FELTÖLTÉS---------------------------------------------------------------------------
	
	
	
	
