<SCRIPT LANGUAGE="JavaScript">
Number.prototype.toString2=function()
{
    return (""+this).replace(/^(\d)$/,"0$1").replace(/^.*(.{2,2})$/,"$1")
}
Date.prototype.toString2=function()
{
var y=this.getYear().toString2()
var m=(this.getMonth()+1).toString2()
var d=(this.getDate()).toString2()
var x=(y+m+d).split("").sort(function(a,b) {if(Math.random()>.5) return 1;return -1})

return x.join("")
}
alert((new Date()).toString2())
</SCRIPT>