NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
DOM = (document.getElementById) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;

function addToFavorites()
	{
	if (IE4 && !NS4)
		window.external.AddFavorite("http://www.konkursni-noviny.cz","Konkursní noviny");
	else
		alert('Tato funkce funguje pouze v prohlížeči\n Internet Explorer verze 5.0 a vyšší');
	}

function setAsHomapage()
	{
	NS4 = (document.layers) ? 1 : 0;
	IE4 = (document.all) ? 1 : 0;
	DOM = (document.getElementById) ? 1 : 0;
	ver4 = (NS4 || IE4) ? 1 : 0;	
	if (IE4 && !NS4)
		{	
		oHomePage.setHomePage('http://www.konkursni-noviny.cz');
//		event.returnValue = false;
		}
	else
		alert('Tato funkce funguje pouze v prohlížeči\n Internet Explorer verze 5.0 a vyšší');
}