/* Copyright © Cutrope.com. All Rights Reserved. */
if(!UPLOAD){var UPLOAD={create_iframe:function(_options){var iframe_id='f'+Math.floor(Math.random()*99999);var _div=ART.DIV({'id':'divX'});_div.innerHTML='<IFRAME STYLE="display:none" SRC="about:blank" ID="'+iframe_id+'" NAME="'+iframe_id+'" ONLOAD="UPLOAD.loaded(\''+iframe_id+'\')"></IFRAME>';ART.ACN(ART.get_body(),_div);var _iframe=ART.GE(iframe_id);if(_options&&ART.is_function(_options.on_complete))_iframe.on_complete=_options.on_complete;return iframe_id;},set_form:function(_form,iframe_id){_form.setAttribute('target',iframe_id);},loaded:function(iframe_id){var _iframe=ART.GE(iframe_id);if(_iframe.contentDocument)var d=_iframe.contentDocument;else if(_iframe.contentWindow)var d=_iframe.contentWindow.document;else var d=window.frames[iframe_id].document;if(d.location.href=="about:blank")return;if(ART.is_function(_iframe.on_complete))_iframe.on_complete(d.body.innerHTML);ART.call_later(function(){ART.remove_element(ART.GE('divX'));return false;},500);},validate:function(file_type){var message="";var allow_pass=true;var x_img=ART.GE('img_to_upload').value;if(x_img.length==0){message+='Please specify a valid photo to upload.\n\n';ART.change_class_of_text_vars('img_to_upload','input_txt error');allow_pass=false;}if((file_type=='img')&&(!ART.check_ext(x_img,'img'))){message+='Only the following file extensions are permitted : .JPG, .BMP, .GIF, .PNG, .TIFF\n\n';ART.change_class_of_text_vars('img_to_upload','input_txt error');allow_pass=false;}if((file_type=='doc')&&(!ART.check_ext(x_img,'doc'))){message+='Only the following file extensions are permitted : .DOC, .PDF, .TXT, .WPD, .OCX, .WPT, .TML, .RTF\n\n';ART.change_class_of_text_vars('img_to_upload','input_txt error');allow_pass=false;}if(!allow_pass)ERRORS.show(message);return allow_pass;},initialize:function(){ART.change_class_of_text_vars('img_to_upload','input_txt');return;},_submit:function(form_id,_options){UPLOAD.initialize();var file_type=_options.file_type||'img';if(UPLOAD.validate(file_type)){var _form=ART.GE(form_id);UPLOAD.set_form(_form,UPLOAD.create_iframe(_options));if(_options&&ART.is_function(_options.on_start)){_options.on_start();}var _action='/executions/user_edit.cfm?segment=pictures&action=add';if(_options&&_options.action)_action=_options.action;_form.action=_action;_form.method='post';_form.submit();}}};}
