

						
function GenNum()
{
						var a,b,c,d;
						var x="";
						a=Math.random();
						a=(a*1000);
						a=Math.round(a);
						a=a%10;
						
						b=Math.random();
						b=(b*1000);
						b=Math.round(b);
						b=b%100;
						if(b<65)
						{
							b=b+(65-b);		
							if(b>90)
							{		
								b=b-(b-90);
							}					
						}				
						if(b>90)
						{		
							b=b-(b-90);
							if(b<65)
							{
								b=b+(65-b);		
							}
						}
						
						c=Math.random();
						c=(c*1000);
						c=Math.round(c);
						
						d=Math.random();
						d=(d*1000);
						d=Math.round(d);
						d=d%10;
						
						
						document.write(a);
						//document.write("  ");
						document.write(String.fromCharCode(b));
						//document.write("  ");
						document.write(c);
						//document.write("  ");
						document.write(d);
						
						document.write("<input type=hidden name=pl value='" + a + "#" + b + "#"+ c + d + "'>");	
}		
		