Hi, sorry for the delay but i got into something deep.
But i finaly got the answer to that problem
go to sc_classes.php around line 715, should be the line:
var sValue = record.getElementsByTagName("id")[0].firstChild.nodeValue;
and replace with:
var sValue;
if( record.getElementsByTagName("id")[0].firstChild==null )
sValue = '';
else
sValue = record.getElementsByTagName("id")[0].firstChild.nodeValue;
now it will work with empty <id> tag.
hope this will work for you also.
Best regards
Panos