function get_el(id)
{
        if (document.getElementById)
                return document.getElementById(id);
        else if (document.all)
                return document.all[id];
        else
                return null;
}

function goto_country(which)
{
	if (which != 'Världen' && which != null && which != '')
		document.location.href = '/bilder/' + which;
	else
		document.location.href = '/bilder/';
	return false;
}
function goto_country_blog(which)
{
	if (which != 'Världen' && which != null && which != '')
		document.location.href = '/blogg/' + which + '.html';
	else
		document.location.href = '/blogg/';
	return false;
}

