Source: js/system/uniqid.js


/**
 * Returns a uniq ID base on current timestamp
 */
function uniqid() {
    var newDate = new Date;
    return newDate.getTime();
}
    
// Endfile