 function getId(name) {
	var id = parseInt(name.substring(name.indexOf('.')+1,name.lastIndexOf('.')));
	return id;
}
