Site hosted by Angelfire.com: Build your free website today!
Nota: Kau cuma perlu tahu yg warna putih saja. Buka fail ni dalam notepad. Atau
right click pada fail ini dan pilih -> edit. Lepas Kau save, upload balik ke 
server www.angelfire.com. Tanda checkbox overwrite yg ada. 
 
var a;

function writeme()
{
write(msg2);//tiap kali start mesej, ko letak command kat sini. msg2 tu nama msg baru ko
write(msg1);
}

var msg2 = new Array();//declare array
msg2[0] = "19-02-2002";//tarikh mesej
msg2[1] = "28/02/2002";//tarik luput.. yg ni option.. kalau
                       //lepas dari tarikh ni, tanda new di muka depan akan hilang
msg2[2] = "Haiya.. Kalau ini macam mabuk la gua!! <p>BWooD";
//yg ni start mesej.. ingat.. jangan tekan enter utk baris baru. 
//Guna <p> utk Paragraf baru .. mc contoh di atas.
//---------------------bawah ni mesej lama----------------------
var msg1 = new Array();
msg1[0] = "19-02-2002";
msg1[1] = "28/02/2002";
msg1[2] = "Example Message. <p>Yo, What's Up?? How's Life?? Me doing fine here. Hope All is well and nothing stupid.. Hehe. So what the Fuck U all Doing??";


function write(msg)
{

document.writeln('<P align=left class=bomhead>'+ msg[0]);
document.writeln('<script> checknew("' + msg[1] + '")</script>');
document.writeln('<P align=left class=bomnormal>');
document.write(msg[2]);
document.writeln('</P>');
}