// JavaScript Document
function FGetFirmInfo(FirmID) 
{
	var wh=400, ww=530, pcd='', sw=screen.width;
	sh=screen.height, btype=0;
	if (navigator.appName.indexOf('Explorer')>=0) btype=1;
	wbx = Math.round((sw-ww)/2);
	wby = Math.round((sh-wh)/2);
	if (btype==1) 
		pcd="left="+wbx+",top="+wby+",";
	else pcd="screenX="+wbx+",screenY="+wby+",";
		nWnd=window.open("http://catalog.sec.ru/sfirminfo.cfm?fid="+FirmID,"NewWnd","width="+ww+",height="+wh+","+pcd+"toolbar=0"+",scrollbars=1,resizable=0");
	if(btype==0) nWnd.focus();
} 
