function taille(n)
{
	document.getElementById("flashcontent").style.height = n + "px";
}
function gotop()
{
	scroll(0,0);
}
function openNewsletter()
{
	var winWidth = 420;
	var winHeight = 370;
	var winSize = 'width=' + winWidth + ',height=' + winHeight;
	var thewindow = window.open('http://web97.srv1.solutions.at/newsletter/index.php', 'Newsletter', winSize);
	thewindow.focus();
	//thewindow.moveTo(0,0);
}
function openArchiv (url, breite, hoehe) {
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      thewin = window.open(url,"archiv","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
	  thewin.focus();
}
