/**
 * iStandaarden Utiltily Helper Functions
 */

/**
 * Create Basic URL without Spaces and URI Encoding
 */
function urlize(target) {
    return encodeURIComponent(target.split(' ').join('').toLowerCase());
}