// Öppnar en bild i större storlek

function popBild(filnamn){
	window.open('js_popbild.asp?filnamn='+filnamn, 'bild', 'width=100,height=100');
}



function skrivEpost(a, b, link)
{
	if (link)
	{
		document.write('<a class="svart" href="mailto:');
		skrivEpost(a,b,false);
		document.write('">');
		skrivEpost(a,b,false);
		document.write('</a>');
	}
	else
	{
		document.write(a);
		document.write('@');
		document.write(b);
	}
	return;
}


function go(x)
{
	document.location.href=x;
}