function Tnews(d,t,c)
{
	this.date = d;
	this.title = t;
	this.content = c;
	this.getdate = getdate;
	this.gettitle = gettitle;
	this.getcontent = getcontent;
	this.display = display;
}

function getdate()
{
	return(this.date);
}

function gettitle()
{
	return(this.title);
}

function getcontent()
{
	return(this.getcontent);
}

function display()
{
	document.write("<tr><td align='middle' width='25px'><img src='images/bullet_news.gif'></td>");
	document.write("<td class='news' width='90px'><p class='news_data'>"+this.date+"</p></td>");
	document.write("<td class='news' ><p class='news_title'>"+this.title+"</p></td></tr>");
	document.write("<tr><td></td><td></td>");
	document.write("<td class='news'><p class='news_content'>"+this.content+"</p></td></tr>");
	document.write("<tr><td>&nbsp;</td></tr>");
	return(0);
}
