
function contact() {
	document.location = 'mai' + 'lto' + ':info%40skaliant%2ede';
}

function showZoom(url) {
	var body = document.getElementsByTagName('body')[0];
	///
	if (body) {
		var lense = document.createElement('div');
		var div = document.createElement('div');
		var img = document.createElement('img');
		var tab = document.createElement('table');
		var tbody = document.createElement('tbody');
		var tr = document.createElement('tr');
		var td = document.createElement('td');
		///
		td.align = 'center';
		td.valign = 'middle';
		td.appendChild(img);
		td.style.width = '100%';
		td.style.height = '100%';
		tr.appendChild(td);
		tbody.appendChild(tr);
		tab.appendChild(tbody);
		tab.style.width = '100%';
		tab.style.height = '100%';
		tab.onclick = hideZoom;
		tab.style.cursor = 'crosshair';
		///
		img.src = url;
		img.onclick = hideZoom;
		img.style.cursor = 'crosshair';
		div.id = 'zoom';
		div.style.position = 'absolute';
		div.style.top = '0px';
		div.style.left = '0px';
		div.style.width = '100%';
		div.style.height = '100%';
		div.style.textAlign = 'center';
		div.appendChild(tab);
		lense.id = 'lense';
		lense.style.position = 'absolute';
		lense.style.top = '0px';
		lense.style.left = '0px';
		lense.style.width = '100%';
		lense.style.height = '100%';
		lense.style.backgroundColor = 'black';
		lense.style.filter = 'alpha(opacity=50)';
		lense.style.MozOpacity = '0.5';
		div.onclick = hideZoom;
		body.appendChild(lense);
		body.appendChild(div);
	}
}

function hideZoom() {
	var lense = document.getElementById('lense');
	var div = document.getElementById('zoom');
	var body = document.getElementsByTagName('body')[0];
	///
	if (div && body) {
		body.removeChild(lense);
		body.removeChild(div);
	}
}

