

var day_for_add_news_image = 5 * 86400000;
var time_now = new Date().getTime();
function add_news_image(date_str) {
  var re = /(\d+)-(\d+)-(\d+)/;
  if (re.test(date_str)) {
    var input_time = new Date(RegExp.$1,(RegExp.$2-1),RegExp.$3).getTime() + day_for_add_news_image;
    if (input_time > time_now) {
	 return document.write('<img src=images/new.gif />');
	}
  }
  return ;
}
function jsleft(lefts,leftn) 
    {
	 var sl=lefts; 
     sl = sl.substring(0,leftn); 
     return sl;
	 }
document.write('<div class="index_newslist">');
document.write('<ul class="news" style="line-height:20px;">');

document.write('<li>');
document.write('<a href="kochin-mega.htm" target="_blank">');
document.write('' + jsleft("MEGA EVENT 2012 - Kochin", 65) + '</a>');
add_news_image('2012-01-12');
document.write('</li>');

document.write('<li>');
document.write('<a href="new-year-trivandrum.htm" target="_blank">');
document.write('' + jsleft("PRODUCT TRAINING AND NEW YEAR CELEBRATION- TRIVANDRUM", 65) + '</a>');
add_news_image('2012-01-9');
document.write('</li>');

document.write('<li>');
document.write('<a href="NEYYATINKARA.htm" target="_blank">');
document.write('' + jsleft("NEW MARKET DISTRIBUTORS PROGRAM AT NEYYATINKARA", 65) + '</a>');
add_news_image('2012-01-9');
document.write('</li>');

document.write('<li>');
document.write('<a href="kollam-dec.htm" target="_blank">');
document.write('' + jsleft("TWO DAYS WORKSHOP AT KOLLAM-2011", 65) + '</a>');
add_news_image('2011-12-21');
document.write('</li>');

document.write('<li>');
document.write('<a href="bbs@triv.htm" target="_blank">');
document.write('' + jsleft("BUSINESS BUILDING SEMINAR AT TRIVANDRUM", 65) + '</a>');
add_news_image('2011-11-23');
document.write('</li>');

document.write('<li>');
document.write('<a href="tiens@Malayala-Manorama.htm" target="_blank">');
document.write('' + jsleft("TIENS-Technology that respect tradition for better and healthy life", 65) + '</a>');
add_news_image('2011-11-23');
document.write('</li>');

document.write('<li>');
document.write('<a href="cochin-traininf.htm" target="_blank">');
document.write('' + jsleft("Train the Trainer’s program report", 65) + '</a>');
add_news_image('2011-11-19');
document.write('</li>');

document.write('<li>');
document.write('<a href="trivandrum-health.htm" target="_blank">'); 
document.write(''+jsleft("SPECIAL HEALTH SEMINAR AT TRIVANDRAM",65)+'</a>');
add_news_image('2011-07-20');
document.write('</li>');

document.write('<li>');
document.write('<a href="cochinbrnch.htm" target="_blank">'); 
document.write(''+jsleft("Intensive Business Training At Trivandrum",65)+'</a>');
add_news_image('2011-06-01');
document.write('</li>');

document.write('</ul>');
document.write('</div>');
document.write('<div style="text-align:right;padding:0 5px;">');
document.write('<strong>');
document.write('<a href="News-Center.htm">');
document.write('<img src=images/oneormore.gif />');
document.write('</a>');
document.write('</strong>');
document.write('</div>');

