function kanHanteraImages() {
	webLasare = navigator.appName;
	webLVersion = parseInt(navigator.appVersion);

	if (webLasare == "Netscape" && webLVersion >= 3) {
		return true;
	}
	else if (webLasare == "Microsoft Internet Explorer" && webLVersion >= 4) {
		return true;
	}
}

function lysUppBild(namn) {
	if (kanHanteraImages() == true) {
		document.images['info'].src=namn.src;
	};
}