function hashcode()
{
	var szam = ""+Math.floor(Math.random()*100000000);
	while(szam.length < 8)
	{
		szam = "0"+szam;
	}
	return szam;
}



