var lang = "de";

function gotoXpertum() {
	if (lang != "de") {
		var xpertumWin = window.open("http://xpertum.germakon.de/"  + lang + "/");
	} else {
		var xpertumWin = window.open("http://xpertum.germakon.de/");
	}
}
function gotoGermakon() {
	if (lang != "de") {
		var germakonWin = window.open("http://www.germakon.de/"  + lang + "/");
	} else {
		var germakonWin = window.open("http://www.germakon.de/");
	}
}
var myWindow;
function openCenteredWindow(url) {
	/*
    var width = 400;
    var height = 300;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + 
        ",status,resizable,left=" + left + ",top=" + top + 
        ",screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url, "subWind", windowFeatures);
	*/
	var width = screen.availWidth;
	var height = parseInt(screen.availHeight - 40);
	var windowFeatures = "width=" + width + ", height=" + height + ", status, resizable, top=0, left=0";
	myWindow = window.open(url, "subWind", windowFeatures);
	
	//myWindow = window.open(url);
}
