
	// var baseurl = 'http://webserver/keep-contact/';
	var baseurl = 'http://www.gli.ch/';


	function popup(url, name, x, y, width, height)	{
		window.open(url, name, "'height=" + height + ",width=" + width + 
			",toolbar=no,location=no,directories=no,status=no,menubar=0,scrollbars=yes,resizable=yes,left=" 
			+ x + ",top=" + y + "'");
	}
	function popupNews()	{
		popup(baseurl + 'news.htm', 'news', 500, 40, 400, 400);
	}

	function popupContact()	{
		popup(baseurl + 'contact.htm', 'contact', 200, 40, 800, 400);
	}

	function popupHelp(uri)	{
		popup(baseurl + uri, 'help', 400, 40, 600, 400);
//		popup('http://localhost:8080/kontakt/' + uri, 'help', 400, 40, 600, 400);
	}

	function test()	{
		alert('popup.js integriert');
	}
 

