// random number generator:
// returns an integer between 0 and the number supplied
// do not edit
getRandomNumber = function( n ){return Math.floor(Math.random() * (n ? n : 32768) );}

/*
The following script defines the various promotional code blocks
that will be randomly displayed on this page.
*/
/*
var tips = [];

// add copy between the two '  ' only
tips[ tips.length ] = 'Jam to as many as 125 songs when using your TFlash card.';

tips[ tips.length ] = 'Use the phone, music player and camera when phone is closed.';

tips[ tips.length ] = 'Music player shortcut: Press and hold the OK button.';

tips[ tips.length ] = '<a href="/energi/energi_tips_sample_js.htm">tip #4 <br> tips can be links if needed</a>';
*/

writeblock = function( array )
{
	if( !array.length ) return;
	document.write( array[ getRandomNumber( array.length ) ] );
}

