<!--
/* This script update the today's stamp issue section  */
/*   on "index.html" file automatically                */
/* It was created on Sunday, 4 April 2010              */
/* © 2010 Mohd Nizamuddin Safie [mnshy@tm.net.my]      */

now = new Date();
y = now.getFullYear();
m = now.getMonth() + 1;
d = now.getDate();

if(m<10){m2="0"+m} else {m2=m};
if(d<10){d2="0"+d} else {d2=d};
y2=y;

y3 = y2.toString();
m3 = m2.toString();
d3 = d2.toString();

/* document.write("<font class='redtxt'>New Issue Today:</font><br><br>"); */
document.write("<font color='#888888' style='font-family: sans-serif; font-size: 90%'><b>Today's New Issue:</b></font><br><br>");
document.write("<script language = 'JavaScript' src='" + y3 + m3 + d3 + ".js'></script>");
//-->

