// JavaScript Document

function popUp(URL)			// öffnet ein Pop-Up-Fenster 610x170
	{
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=618,height=418,left = 203,top = 175');");
	}

function popUp2(URL)			// öffnet ein Pop-Up-Fenster 610x170
	{
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=618,height=418,left = 203,top = 175');");
	}

function popUp800(URL)		// öffnet ein Pop-Up-Fenster 800x600 in der oberen linken Ecke
	{
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=600,left = 1,top = 1');");
	}

function ChangePic(land)	// hebt das Land, über dem sich die Maus befindet, optisch hervor
	{
		if (land==0)
			document.getElementById("activeLand").src = "maps/_blank.gif";
		else
			document.getElementById("activeLand").src = "maps/" + land +".gif";
	}
			
function openInfo(URL)		// öffnet ein zentriertes Pop-Up-Fenster 480x320
	{	
		day = new Date();
		id = day.getTime();
		xpos = (screen.width/2) - 240;
		ypos = (screen.height/2) - 160;
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=320,left =" + xpos + ",top =" + ypos + "');");
	}

function openSmallInfo(URL)		// öffnet ein zentriertes Pop-Up-Fenster 480x320
	{
    day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=320,height=110,left = 203,top = 175');");
	}
	
