<html>
<head>
<script>
window.onload=(function(){
function rand(a,b){return Math.floor(Math.random()*(b-a+1))+a};
a=(a=rand(0,1000))<10?'00'+a:a=(a<100)?'0'+a:a;
document.getElementById('mess').innerHTML="http://sait.ru/id"+a;
});
</script>
</head>
<body>
<div id="mess"></div>
</body>
</html>