Lottery Number Picker Code
step 1-insert the following into the <head> section of ur page:
step 2-insert the following into the <body> section of ur page:
it will look like this:
:::::::::result:::::::::
var z=y.split(','); for (i=0; i < z.length; i++) { z[i]=z[i]+" "; if (z[i].length < 3)//add '0' to singles z[i]="0"+z[i]+" "; } z=z.sort(); Nos=z[0]+z[1]+z[2]+z[3]+z[4]+z[5]; if (document.all) {document.all.layer1.innerHTML=Nos;}//OR Z! else if (document.layers) { document.layers.layer1.document.open(); document.layers.layer1.document.write("
"+Nos+"
"); document.layers.layer1.document.close(); } T=setTimeout('lotto()',10); } } //-->
:::::::::result:::::::::