function init(site) {
	contentBreedte();
}

function contentBreedte() {
	var schermbreedte = document.body.clientWidth;
	document.getElementById("fotogroot").style.left = (25 + (schermbreedte-750)/2) + "px";
}

function showFoto() {
	document.getElementById("fotogroot").style.visibility = 'visible';
}

function hideFoto() {
	document.getElementById("fotogroot").style.visibility = 'hidden';
}

function goToURL(url, windo) {
	if (windo) {
		extern = window.open(url, "extern", "");
		extern.focus();
	} else {
		self.location.href = url;
	}
}
