/*global document*/
function upload_init() {
    if (typeof (e_type) === 'undefined') {
        e_type = '720x80';
    }
    if (typeof (e_lang) === 'undefined') {
        e_lang = 'en';
    }
    if (typeof (e_text) === 'undefined') {
        e_text = '#000000';
    }
    if (typeof (e_bgcolor) === 'undefined') {
        e_bgcolor = '#FFFFFF';
    }
    var sizearray = e_type.split("x"),
        url = 'http://www.crocko.com/accounts/tools/widget_form/' + e_type + '/' + e_lang + '/' + e_bgcolor.substr(1) + '/' + e_text.substr(1);
    if (typeof (e_id) !== 'undefined') {
        url = url + '/' + e_id;
    }
    document.write('<ifr' + 'ame src="' + url + '" name="uploadsimple" width="' + sizearray[0] + '" height="' + sizearray[1] + '" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no"></iframe>');
}
upload_init();
