
function get_random(maxNum)
{
 if (Math.random && Math.round)
 {
   var ranNum= Math.round(Math.random()*(maxNum-1));
   ranNum+=1;
   return ranNum;
 }
 else
 {
 today= new Date();
 hours= today.getHours();
 mins=  today.getMinutes();
 secn=  today.getSeconds();
 if (hours==19)
 hours=18;
 var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
 return ranNum;
 }
}

function getaQuote()
{
var maxQuotes=11;
var whichQuote=get_random(maxQuotes);
whichQuote--;

var quote=new Array(maxQuotes)
 quote[1]="&quot;B&#7843;n ch&#7845;t c&#7911;a t&#236;nh b&#7841;n ch&#226;n th&#7853;t l&#224; khoan dung v&#7899;i nh&#7919;ng l&#7895;i nh&#7887; c&#7911;a b&#7841;n. _The essence of true friendship is to make allowance for another's little lapses. (DAVID STOREY)&quot; ";
 quote[2]="&quot;Lu&#244;n lu&#244;n c&#243; ni&#7873;m hy v&#7885;ng cho ng&#432;&#7901;i n&#224;o b&#236;nh t&#226;m suy ngh&#297; v&#7873; cu&#7897;c s&#7889;ng. _There is always hope for an individual who stops to do some serious thinking about life. (K.LOGAN)&quot; ";
 quote[3]="&quot;Bao l&#226;u b&#7841;n c&#242;n tin &#7903; b&#7841;n, th&#236; ng&#432;&#7901;i kh&#225;c v&#7851;n c&#242;n tin &#7903; b&#7841;n. _As long as you believe in yourself, others will. (CYNDA WILLIAMS)&quot; ";
 quote[4]="&quot;B&#7841;n t&#7889;t l&#224;nh cho ta kho&#7867; m&#7841;nh. _Good friends are good for your health. (IRWIN SARASON)&quot; ";
 quote[5]="&quot;Cu&#7897;c &#273;&#7901;i ng&#7855;n ng&#7911;i qu&#225; n&#234;n kh&#244;ng th&#7875; s&#7889;ng nh&#7887; nhoi. _Life is too short to be little. (B.DISRAELI)&quot; ";
 quote[6]="&quot;Ch&#259;m ch&#7881; v&#224; k&#7927; lu&#7853;t s&#7869; &#273;&#432;a b&#7841;n &#273;&#7871;n m&#7885;i th&#224;nh c&#244;ng. _Hard work and self discipline will get you everywhere. (H.G.BROWN)&quot; ";
 quote[7]="&quot;&#272;&#7915;ng t&#7921; h&#7841; gi&#225; b&#7841;n. T&#7845;t c&#7843; nh&#7919;ng g&#236; b&#7841;n c&#243; &#273;&#227; l&#224;m n&#234;n nh&#226;n c&#225;ch c&#7911;a b&#7841;n. _Don't compromise yourself. You are all you've got. (JANIS JOPLIN)&quot; ";
 quote[8]="&quot;M&#7897;t trong nh&#7919;ng c&#259;n b&#7879;nh l&#7899;n nh&#7845;t l&#224; s&#7889;ng m&#224; kh&#244;ng l&#224;m c&#243; &#237;ch cho ai. _One of the greatest diseases is to be nobody to anybody. (ME TERESA)&quot; ";
 quote[9]="&quot;Khi m&#7885;i ng&#432;&#7901;i th&#226;n &#225;i v&#7899;i nhau th&#236; n&#432;&#7899;c l&#227; c&#361;ng ng&#7885;t ng&#224;o. _When men are friendly even water is sweet. (T&#7908;C NG&#7918; TRUNG HOA)&quot; ";
 quote[10]="&quot;T&#236;nh b&#7841;n ch&#226;n th&#7853;t &#273;&#432;&#7907;c th&#7917; th&#225;ch b&#7857;ng ngh&#7883;ch c&#7843;nh. _Genuine friends are proved by adversity. (AESOP)&quot; ";
 quote[11]="&quot;C&#432;&#7901;i l&#224; ph&#432;&#417;ng thu&#7889;c th&#7847;n di&#7879;u d&#224;nh cho nh&#7919;ng ng&#432;&#7901;i c&#243; t&#226;m b&#7879;nh. _Laughter is the best remedy for the sick at heart. (E.BEILENSON)&quot; ";
 quote[12]="&quot;Ni&#7873;m vui l&#224; &#7903; s&#7921; &#273;i &#273;&#432;&#7901;ng, ch&#7913; kh&#244;ng &#7903; s&#7921; t&#7899;i &#273;&#237;ch. _The joy is in the journey and not arriving at the destination. (DIANE SAWYER)&quot; ";
 

document.write(quote[whichQuote]);

}

getaQuote();

