var max1 = 21;
var max2 = 37;
var max3 = 11;

index1 = Math.round(Math.random() * max1);	
index2 = Math.round(Math.random() * max2);	
index3 = Math.round(Math.random() * max3);	

array1 = new Array("Deport","Slash","Cut","Create","Tackle","Lower","More","Less","Deliver on","Control","Lie about","Exploit","Bring back","Reform", "Deliver cleaner", "Ignore", "Scrap", "Penalise", "Declare war on", "Change", "Fairness for", "Higher");

array2 = new Array("New Labour","Mr Blair","stealth taxes","empty promises","illegal immigrants","the metropolitan elite","socialism","Robert Kilroy-Silk","Johnny Foreigner","accountability","responsibility","freedom","trust","public services", "police", "matrons", "nurses", "discipline", "sleaze", "opportunity", "criminals", "yobs", "commoners", "middle England", "Thatcherism", "Europe", "NHS hospitals", "gypsies", "choice", "drugs","family","the Council Tax","pensioners", "the welfare state","moral values", "public spending", "immigration", "tax payers");

array3 = new Array("", ", while cutting taxes", ", not blame culture",", not law-abiding citizens"," - once and for all","for British people","to make Great Britain great", ", not victims", ", not compensation culture", ", not hard-working people", "for hard-working families","- it's not racist");

function getResult()
{
	index1 = Math.round(Math.random() * max1);	
	index2 = Math.round(Math.random() * max2);	
	index3 = Math.round(Math.random() * max3);	

	document.frmTest.txtTest.value = array1[index1] + " " + array2[index2] + " " + array3[index3];	
	
}