function TM_openBrWindow(theURL,winName,fwidth,fheight) {
	breite = screen.width;
	hoehe = screen.height;
	xps = ((breite/2)-(fwidth/2));
	yps = ((hoehe/2)-(fheight/2));
  	var win=window.open(theURL, winName, 'status=no, menubar=no, location=no, directories=no, scrollbars=no, toolbar=no, resizeable=yes, top=' + yps +', left='+ xps +', width=' + fwidth + ', height=' + fheight);
  	win.focus();
}


function openPic(url,winName,winParams)	{	//
		var theWindow = window.open(url,winName,winParams);
		if (theWindow)	{theWindow.focus();}
}

function handleError() {
	return true;
}

window.onerror = handleError;


