function initData(w,h)
{
	dataDB = new Array(h);
	for (i=0; i<h; i++) {
		dataDB[i] = new Array(w);
	}
}
