/* * * * * START: SHOW NAVIGATION * * * * */
function showNavi() {
	document.getElementById("navigation").style.display = 'block';
}
/* * * * * END: SHOW NAVIGATION * * * * */


/* * * * * START: HIDE CONTENT * * * * */
function hideContent() {
	if (document.getElementById("content")) {
		document.getElementById("content").style.display = 'none';
	}
	// hide thumbs:
	if (document.getElementById("thumbs")) {
		document.getElementById("thumbs").style.display = 'none';
	}		
	// hide image:
	if (document.getElementById("rightcol")) {
		document.getElementById("rightcol").style.display = 'none';
	}	
	// hide text info:
	if (document.getElementById("info")) {
		document.getElementById("info").style.display = 'none';
	}
}
/* * * * * END: HIDE CONTENT * * * * */


/* * * * * START: E-MAIL * * * * */
function mailto(name,domain){
    window.location.href = "mailto:"+name+"@"+domain;
}
/* * * * * END: E-MAIL * * * * */