function NewWindow(mypage,myname,w,h,scroll){
	// Author: Eric King Url: http://redrival.com/eak/index.shtml
	// This script is free to use as long as this info is left in
	// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
	var win = null;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 100;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 50;
	if ((screen.width < w) || (screen.height < h)) scroll = 'yes';
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no,status=no';
	win = window.open(mypage,myname,settings);
	return win;
}

function obj_open(image, text, width) {
	obj=NewWindow('../objekt_popup.html?obj='+image+'&text='+text, 'objekt', width, 627, 'no');
	obj.resizeTo(width, 627);
	obj.focus();
}

