function openWindow(d) {
	kp = window.open(""+d+"","glossar","width=550,height=416,resizable=yes,status=yes,scrollbars=yes");
	window.kp.focus();
	x = (screen.width/2)-(550/2);
	y = (screen.height/2)-(416/2)
	kp.moveTo(x,y);
	return false;
}

function openWindowKids(d) {
	kp = window.open(""+d+"","kids","width=640,height=700,resizable=yes,status=yes,scrollbars=no");
	window.kp.focus();
	x = (screen.width/2)-(640/2);
	y = (screen.height/2)-(700/2)
	kp.moveTo(x,y);
	return false;
}


function resize(x,y) {
	if(document.layers){
		window.resizeTo(x,y);
	}else{
		x = x+12;
		y = y+28;
		window.resizeTo(x,y);
	}
}

