function ShowHideDiv( id )
{
	if( document.getElementById( id ).style.display == 'none' )
	{
		document.getElementById( id ).style.display = 'block';
	}
	else
	{
		document.getElementById( id ).style.display = 'none';
	}
}


function addToFavorites() {

	if (window.external) {

		window.external.addFavorite(location.href,document.title)

	}

	else {

		alert("Functie indisponibila in browser-ul dumneavoastra.");

	}

}

function ShowPop(pop) 
{
	var x = 'popup'+pop;
	document.getElementById( x ).style.display = 'block';
}
function HidePop(pop) 
{
	var x = 'popup'+pop;
	divX = document.getElementById( x );
	divX.style.display = 'none';
}

function ShowPopup(pop) 
{
	document.getElementById( pop ).style.display = 'block';
}
function HidePopup(pop) 
{
	divX = document.getElementById( pop );
	divX.style.display = 'none';
}


