function redirect( url )
{
	location.href = url;
}

function selectCountry( list )
{
	redirect( list.options[ list.selectedIndex ].value );	
}

function demoAlert()
{
	alert( 'Vom putea opera rezervari de pe site-ul www.mundus.ro incepand cu luna Mai! Ne revedem atunci!' );
	redirect( '/' );
}

function addBookmark( url, title )
{
	if ( window.sidebar )
	{ 
		window.sidebar.addPanel(title, url,"");
	}
	else if( document.all )
	{
		window.external.AddFavorite( url, title);
	}
	else
	{
		alert("Sorry, your browser doesn't support this");
	}
}

function show( id )
{
	$( '#' + id ).fadeIn("slow");

}

function hide( id )
{
	$( '#' + id ).fadeOut("slow");

}

