////////////////////////////////////////////////////////
//													  //
// **** Szöveg megjelenítése a státuszsorban... ****  //
//													  //
// text :				 							  //
// 	a megjelenítendő szöveg							  //
//													  //
////////////////////////////////////////////////////////	
	
function showTitle (text)
	{
		window.status = text;
	}

////////////////////////////////////////////////////////
//													  //
// ***** Szöveg eltüntetése a státuszsorban... *****  //
//													  //
////////////////////////////////////////////////////////	
		
function hideTitle ()
	{
		window.status = "";
	}

////////////////////////////////////////////////////////
//													  //
// ***** Navigációs képek cseréje a menüben... *****  //
//													  //
////////////////////////////////////////////////////////	
	
function switch1 (pic, term)
	{
		if ( term == 1 )
			{
				postf = 'on';
			}
		else
			{
				postf = 'off';
			}

	   if (document.images)
	    {
	        document.images[pic].src = "http://www.karavandor-magazin.hu/pics/nav/"+pic+postf+".gif";
	    }
	}
