function screenData(){
	var sh = screenHight;	
}

function bgIn(item) {
	bgChange(item, '#fc1616');
}

function bgOut(item) {
	bgChange(item, '#767676');
}

function bgChange(item, color) {
	if (!document.getElementById) return;
	item.style.background = color;
}
function openIMP(term){
	var win, screenWidth, screenHeight;
	screenWidth = window.screen.width;
	screenHeight = window.screen.height;
	screenHeight = screenHeight-50;
	screenWidth = (screenWidth/2)-398;
	win = window.open ("impressum.htm","Polscript","dependent=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=510,height="+screenHeight+",left="+screenWidth+",top=0");

	win.resizeTo(510,screenHeight);
	win.focus();
}
function openAGB(){
	var win, screenWidth, screenHeight;
	screenWidth = window.screen.width;
	screenHeight = window.screen.height;
	screenHeight = screenHeight-50;
	screenWidth = (screenWidth/2)-398;
	win = window.open ("agb.htm","Polscript","dependent=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=510,height="+screenHeight+",left="+screenWidth+",top=0");

	win.resizeTo(510,screenHeight);
	win.focus();
}

function changeImage(imgID, imgPath){
	var path = "Images/";
	eval("document."+imgID).src=path+imgPath;
}	