<!--

/*
+---------------------------------------------------------------
| $Id: tea.js 145 2004-12-17 18:55:38Z matthias $
+---------------------------------------------------------------
| @copy: 	Copyright (c) 2001 - 2005 Matthias Lienau
| @author: 	Matthias Lienau <matthias@mlienau.de>
| @path:	cmapps/teaparty/webroot/jscript/tea.js
| @since:	2004/03/15
| @purpose: Teaparty js functions
+---------------------------------------------------------------
*/

function fenster_oeffnen(url)
{

	Fenster = window.open(url,"Scroll","width=366,height=400,scrollbars=yes,locationbar=no,menubar=no,status=no,resizable=no");
	Fenster.moveTo((screen.width/2)-490/2,(screen.height/2)-590/2);
	Fenster.focus();
}

function fett_fenster_oeffnen(url)
{
	var fett_fenster = window.open(url,"teahead_userpage","width=800,height=600,scrollbars=yes,location=yes,menubar=yes,status=yes,resizable=yes,toolbar=yes");
	fett_fenster.moveTo((screen.width/2)-490/2,(screen.height/2)-590/2);
	fett_fenster.focus();
}

function confirmLink(text,link)	{
	
	if (confirm(text)) {
		this.document.location.href = link;
		return 1;
	}
}

//-->

