var msgWindow;

function setwinName ()
	{
    window.name='mainwindow';
    }

function f_closeWindow ()
	{
	msgWindow.close();
	msgWindow = window.open("/i/pdf/eResearchAnalystReport20070201.pdf","mainwindow");
	}

function f_openWindow ()
	{
	msgWindow = window.open("","msgWindow","width=400,height=500");
	msgWindow.focus();
	msgWindow.document.write("The attached analyst report (the 'Report') was issued by Independent Equity Research Corp., operating as eResearch, independently of First Venture Technologies Corp. (the 'Company').  Therefore, the Company cautions readers as follows:");
	msgWindow.document.write("<p>");
	msgWindow.document.write("(a) the Report is provided to you as a courtesy only, and the Company expressly disclaims any involvement in the preparation thereof and does not in any way confirm the accuracy of its contents;");
	msgWindow.document.write("<p>");
	msgWindow.document.write("(b) without limiting the generality of item (a), the forward-looking information contained in the Report is based, in part, upon the opinions of the authors of the Report and is subject to substantial risks and uncertainty. The Company's actual results could differ materially from those anticipated in the Report;");
	msgWindow.document.write("<p>");
	msgWindow.document.write("(c) undue reliance should not be placed on any portion of the Report, including its projections - the Company recommends that investors consult their own financial advisor prior to making any investment in the Company.");
	msgWindow.document.write("<p align=center>");
	msgWindow.document.write("<nobr>");
	msgWindow.document.write("<input type='button' value='I agree' onClick='javascript: window.opener.f_closeWindow ()'>");
	msgWindow.document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
	msgWindow.document.write("<input type='button' value='close' onClick='javascript:window.close();'>");
	msgWindow.document.write("</nobr>");
	return false;
	}

