function createNews(text,url)
{
	this.text = text;
	this.url = url;
}

var mfviews = new Array()

mfviews[0] = new createNews("Birla Advantage Fund's hot picks","http://www.personalfn.com/detail.asp?date=04/29/2002&story=4");
mfviews[1] = new createNews("Equity Funds: Surpassing all expectations","http://www.personalfn.com/detail.asp?date=04/22/2002&story=6");
mfviews[2] = new createNews("MF: Combining tax efficiency with returns ","http://www.personalfn.com/detail.asp?date=03/28/2002&story=2");
mfviews[3] = new createNews("Post-budget: Is it debt funds or FDs?","http://www.personalfn.com/detail.asp?date=03/23/2002&story=6");



function views()
{
	var data="";
	for(i=0;i<mfviews.length;i++)
	{
		data += "<li type=square><a href='"+mfviews[i].url+"' style='color:#000000'>"+mfviews[i].text+"</a>";
	}
	document.write(data);
	data = "";

	var data="";
	data += "<li type=square><a href='http://www.personalfn.com/s-detail.asp?sector=mfunds&type=&keyword=' style='color:#000000'>More Views on News on Mutual Funds</a>";
	document.write(data);
	data = "";
}

function createOutlook(text,url,text1,url1,options)
{
	this.text = text;
	this.url = url;
	this.text1 = text1;
	this.url1 = url1;
	this.options = options;
}

var mfoutlook = new Array();
mfoutlook[0] = new createOutlook("Special Report","http://www.personalfn.com/s-detail.asp?sector=mfunds&type=7&keyword=","MFs: What you need to know ","http://www.personalfn.com/detail.asp?date=04/03/2002&story=1","0");
mfoutlook[1] = new createOutlook("Fund Focus","http://www.personalfn.com/research-it/mutual-funds/fotw/archive.html","K MNC","http://www.personalfn.com/research-it/mutual-funds/fotw040502.html","0");
mfoutlook[2] = new createOutlook("Face to Face","http://www.personalfn.com/s-detail.asp?sector=mfunds&type=8&keyword=","Mr K Vijayan, CEO, JM MF","http://www.personalfn.com/detail.asp?date=03/05/02&story=3","0");
mfoutlook[3] = new createOutlook("Tutorials","http://www.personalfn.com/s-detail.asp?sector=mfunds&type=&keyword=&tt=1","Systematic Investment Plan","http://www.personalfn.com/detail.asp?date=10/1/2001&story=3","0");

function outlook()
{
	var data1 = "";
	for(k=0;k<mfoutlook.length;k++)
	{
		data1 +="<li type=square><a href='"+mfoutlook[k].url+"' style='color:#000000'>"+mfoutlook[k].text+"</a>: <a href='"+mfoutlook[k].url1+"' style='color:#000000'>"+mfoutlook[k].text1+"</a>";
		
		if(mfoutlook[k].options == 1)	
		{
			data1 += " <font face='Comic Sans MS' color='red' size='2'><b>New!</b></font>";
		}
	}
	document.write(data1);
	data1 = "";
	data1 = "<li type=square><a href='http://www.personalfn.com/research-it/mutual-funds/help/faqs.html' style='color:#000000'>FAQs</a>, <a href='http://www.personalfn.com/research-it/mutual-funds/help/glossary.html' style='color:#000000'>Glossary</a>, IPO: <a href='http://www.personalfn.com/research-it/mutual-funds/ipo/idbimip.html' style='color:#000000'>IDBI-PRINCIPAL MIP</a>";
	document.write(data1);
	data1 = "";
}



