// Global vars----
G_total_sa2 = 0;				// total random elements
G_day = new Date();				// date for seed
G_seed = G_day.getTime();		// G_seed for random number

ae_('<img src="images/quick1.gif" border="0">');
ae_('<img src="images/quick2.gif" border="0">');

function ae_ (description) {
	G_total_sa2++;
	sa2 [G_total_sa2] = description;
}

function rand2() {
RN = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*G_total_sa2 + 1,10);
	return RN;
}

function sa2 () {}