function RandomStatement()
{
 var Message=new Array()
 Message[0]='Throughout your website keep <b>Navigation simple</b>.'
 Message[1]='<b>Control</b> how and what <b>Colours</b> you use.'
 Message[2]='For a fast download website use <b>Small Effective Graphics</b>.'
 Message[3]='At all costs try to <b>avoid</b> using Video.'
 Message[4]='To keep viewers at your website <b>Update regularly</b>.'
 Message[5]='Catch your <b>mistakes</b>\, always <b>Spellcheck</b> your webpages.'
 Message[6]='Be more interactive by using <b>Flash</b> or <b>Java Applets</b>.'
 Message[7]='Keep webpages below <b>50Kb</b> so your pages load faster.'
 Message[8]='<b>Minimize</b> the ammount of <b>Text</b> on your webpages.'
 Message[9]='Don\'t over do it with <b>Fonts</b> keep it <b>Simple</b>.'
 Message[10]='Remember to cater for all <b>Browsers</b>, don\'t limit your viewers.'
 Message[11]='Always specify the <b>Size Attributes</b> of all your images.'
 Message[12]='Love a <b>Cat</b> on your site.'
 Message[13]='Always take time to Check that your <b>Links</b> actually work.'
 Message[14]='If you offer <b>Large Images</b> on your site display them using <b>Thumbnails</b>.'
 Message[15]='Understand how <b>HTML</b> works to increase the <b>Performance</b> of your site.'
 Message[16]='Try using <b>JavaScript</b> to make your pages more <b>Interactive</b>.'
 var RandomNumber = Math.round(16 * Math.random());
 document.write("<font face =\"Comic Sans MS\" size=\"3\" color=\"Navy\">" + Message[RandomNumber] + "</font>");
}
RandomStatement();
