/* POPUP WINDOW*/
function popupfenster(URI) {
	popup = window.open(URI,"popup","width=646,height=450,left=150,top=100,dependent=yes,scrollbars,resizable=no");
	popup.focus();
}

/* POPUP IMAGE WINDOW*/
function popupimage(URI) {
	popup = window.open(URI,"popupimage","width=800,height=600,left=150,top=100,dependent=yes,scrollbars=no,resizable=no");
	popup.focus();
}

/* POPUP NEWS (POPUP WINDOW)*/
function popupnews(URI) {
	popup = window.open(URI,"news","width=706,height=550,left=250,top=100,dependent=yes,scrollbars,resizable=no");
	popup.focus();
}

/* POPUP WHOLE WINDOW (FULL WINDOW)*/
function fullwindow(URI) {
	fullwin = window.open(URI,"fullwin","left=50,top=50,menubar=yes,toolbar=yes,resizeable=yes,scrollbars=yes,status=yes");
	fullwin.focus();
}

function getAppVersion(){
        appname= navigator.appName;
        appversion = navigator.appVersion;
        majorver = appversion.substring(0, 1);
        if ( (appname == "Netscape") && ( majorver  < 5 ) ) return 1;
        if ( (appname == "Microsoft Internet Explorer") && (majorver < 5) ) return 1;
        return 0;
}