<!--
function openFilofax () {
	// CHECK THE BROWSERS
	var u = 'main2.php';
	var W = 600;
	var H = 560;
	var X = 100;
	var Y = 100;
	var n = 'filofax';
	
	is=[];
	is.dom  = document.getElementById?1:0;
	is.ua   = navigator.userAgent.toLowerCase();
	is.ie   = is.ua.match(/msie/)||0;

	// ONLY FOR IE 
	if (is.ie){
		var CWIN=window.open(u,n,"fullscreen=0,scrollbars=0")
		CWIN.moveTo(0,0)
		CWIN.resizeTo(W,H)
	} else {
		var CWIN=window.open(u,n,"fullscreen=0,scrollbars=0")
	}		
	CWIN.moveTo(X,Y)
	CWIN.focus();
}

function openSTMAS () {
	// CHECK THE BROWSERS
	var u = 'http://www.csu-kv-ebersberg.de/';
	var n = 'politik';
	
	is=[];
	is.dom  = document.getElementById?1:0;
	is.ua   = navigator.userAgent.toLowerCase();
	is.ie   = is.ua.match(/msie/)||0;

	// ONLY FOR IE 
	if (is.ie){
		var CWIN=window.open(u,n)
	} else {
		var CWIN=window.open(u,n)
	}		
	CWIN.focus();
}

function changeFrame (URI, framename) {
  parent[framename].location.href = URI;
}

-->
