function showhide(elmnt) {
    var x = document.getElementById(elmnt);
    if (x.style.visibility == "visible") {
        x.style.visibility = "hidden"
        }
    else {
        x.style.visibility = "visible"
        }
    }
// function showPhoto(source) {
//    if (source != "") {
//        var x = document.getElementById('photo');
//        var y = document.getElementById('project_text');
//        x.src = source;
//	    x.style.display = "inline";
//	    y.style.display = "none";
//	    }
//	}
function showPhoto(source) {
    if (source != "") {
        var x = document.getElementById('right');
		x.innerHTML = "<div class='image_holder'><img src=" + source + " /></div>"
        }
	}
function show(elmnt) {
    if (elmnt != "") {
        var x = document.getElementById(elmnt);
        x.style.visibility="visible"
	    }
	}
function hide(elmnt) {
    if (elmnt != "") {
        var x = document.getElementById(elmnt)
        x.style.visibility="hidden"
    	}
	}
function thisYear() {
	today = new Date();
	document.write(today.getFullYear());
}
function buildEmailLink(name, domain, linktext, tooltip) {
	var showname = "marcus";
	var showhost = "haraldssonfoto.se";
	document.write(" <a href=" + "mail" + "to:" + name + "@");
	document.write(domain + " title='" + tooltip + "' >");
	document.write(linktext + "</a>");
}

