// JavaScript Document
function emailLink(domain, name) {
	if (domain == '') {
		domain = 'citychurch-muenchen.de';
	}
	document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
	document.write(name + '@' + domain + '</a>');	
}

function openUrl(uri) {
		fenster = window.open(uri, "_blank", "height=550,width=450,toolbar=no,status=no");
		fenster.focus();
}

function show() {
  var now = new Date()
  var bis = new Date(2007, 11, 31, 22, 0, 0) //Achtung Monat zählt ab 0, d.h. Januar 0, Dezember 11
  //var bis = new Date(2007, 10, 20, 16)
  if(now.getTime() < bis.getTime()) {
    var image = new Image();
    image.src = 'img/einladungsclip.gif'
    document.getElementById("showImage").src = 'img/einladungsclip.gif'
    document.getElementById("show").style.visibility = "visible";
  }
}

function closeShow() {
  document.getElementById("show").style.visibility = "hidden";
}
