	function doViewImage( _url, _width, _height )
	{
		var _top, _left;
		_top = (window.screen.height - _height) /2;
		_left =(window.screen.width - _width) /2;
		b_w = window.open ("", "Preview", "top="+ _top + ",left=" + _left +",width=" + _width + ", height=" + _height + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=no,titlebar=no");
		b_w.document.write('<html><head><title>Bild Preview</title></head>');
		b_w.document.write('<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">');
		b_w.document.write('<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">');
		b_w.document.write('<tr><td width="100%" align="center" valign="middle"><img src="'+_url+'" width="' + _width + '" height="' +_height + '">');
		b_w.document.write('</td></tr></table></body></html>');
	}
