my $id = time();
function createGUID() { // http://www.ietf.org/rfc/rfc4122.txt var s = []; var hexChars = "0123456789ABCDEF"; for (var i = 0; i < 32; i++) { s = hexChars.substr(Math.floor(Math.random() * hexChars.length), 1); } s[12] = "4"; // bits 12-15 of the time_hi_and_version field to 0010 s[16] = hexChars.substr((s[16] & 0x3) | 0x8, 1); // bits 6-7 of the clock_seq_hi_and_reserved to 01 return s.join("");}