String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g,""); } String.prototype.count=function(s1) { return (this.length - this.replace(new RegExp(s1,"g"), '').length) / s1.length; } String.prototype.repeat = function(l){ return new Array(l+1).join(this); }; function _form_collect_data(thisform) { var s_data = ""; for (var i = 0; i < thisform.elements.length; i++) { if (typeof(FCKeditorAPI) != "undefined" && typeof(FCKeditorAPI.GetInstance(thisform.elements[i].name)) != "undefined") { s_data += "&" + thisform.elements[i].name + "=" + encodeURIComponent(FCKeditorAPI.GetInstance(thisform.elements[i].name).GetXHTML()); } else { if (thisform.elements[i].tagName.toLowerCase() == "input" && (thisform.elements[i].type.toLowerCase() == "checkbox" || thisform.elements[i].type.toLowerCase() == "radio") && !thisform.elements[i].checked) { continue; } else if (thisform.elements[i].tagName.toLowerCase() == "select") { for (var j = 0; j < thisform.elements[i].options.length; j++) { if (thisform.elements[i].options[j].selected) { s_data += "&" + thisform.elements[i].name + "=" + encodeURIComponent(thisform.elements[i].options[j].value); } } } else { s_data += "&" + thisform.elements[i].name + "=" + encodeURIComponent(thisform.elements[i].value); } } } return s_data.substring(1); } function _ajax_submit(thisform, fn_success, fn_failure) { // This function require Prototype library //var thisform_id = thisform.id; $.ajax({ type: "POST", url: thisform.action, timeout: 600000, // 璁惧畾瓒呮椂鏃堕棿 21/07/2010 data: _form_collect_data(thisform), success: fn_success, error: fn_failure }); } function _ajax_request(module, action, params, fn_success, fn_failure) { // This function require Prototype library var url = "index.php?_m=" + module + "&_a=" + action + "&_r=_ajax"; // Reform query string for (key in params) { url += "&" + key + "=" + params[key]; } $.ajax({ type: "GET", url: url, success: fn_success, error: fn_failure }); } function _eval_json(s_json) { if (s_json.trim().length == 0) return false; return eval("(" + s_json + ")"); } function random_str(len) { var chars = "abcdefghijklmnopqrstuvwxyz" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "1234567890"; var idx = 0; var random_s = ""; len = parseInt(len); if (!len || len == "NaN" || len < 6) { len = 6; } for (var i = 0; i < len; i++) { idx = Math.floor(Math.random() * chars.length); random_s += chars.substr(idx, 1); } return random_s; } function show_inline_win(load_url, title_txt, w_width, w_height) { if (!title_txt) title_txt = ""; if (!w_width) w_width = 640; if (!w_height) w_height = 480; load_url += "&width=" + w_width; load_url += "&height=" + w_height; tb_show(title_txt, load_url, false); } function show_iframe_win(load_url, title_txt, w_width, w_height) { if (!title_txt) title_txt = ""; if (!w_width) w_width = 640; if (!w_height) w_height = 480; load_url += "&width=" + w_width; load_url += "&height=" + w_height; //load_url += "&modal=true"; load_url += "&TB_iframe=true"; tb_show(title_txt, load_url, false); } function show_iframe_win_n_modal(load_url, title_txt, w_width, w_height) { if (!title_txt) title_txt = ""; if (!w_width) w_width = 640; if (!w_height) w_height = 480; load_url += "&width=" + w_width; load_url += "&height=" + w_height; load_url += "&TB_iframe=true"; tb_show(title_txt, load_url, false); } function show_imgpicker(img_id) { var picker_url = "index.php?_m=mod_media&_a=image_picker&imgid=" + img_id; show_iframe_win_n_modal(picker_url, "Select picture", 380, 60); } function show_imgpickers(img_id) { var picker_url = "index.php?_m=mod_media&_a=image_pickers&imgid=" + img_id; show_iframe_win_n_modal(picker_url, "Select picture", 380, 60); } function show_flvpicker(flv_id) { var picker_url = "index.php?_m=mod_media&_a=flash_picker&flvid=" + flv_id; show_iframe_win_n_modal(picker_url, "Choose Flash", 380, 60); } function show_adpicker( vl, title, pos ) { var picker_url = "index.php?_m=mod_advert&_a=ad_picker&adtype=" + vl + '&p=' + pos; show_iframe_win_n_modal(picker_url, title, 550, 330); } function show_markpicker( vl, title, status, msg ) { var picker_url = "index.php?_m=mod_attachment&_a=watermark_preview&mktype=" + vl + "&wt=" + status + "&msg=" + msg; show_iframe_win_n_modal(picker_url, title, 520, 425); } function save_position(thisform, fn_success, fn_failure) { _ajax_submit(thisform, fn_success, fn_failure); } function _reform_url(url, q_extra) { var q_hash = Array(); var url_parts = url.split(/#/); var anchor = url_parts[1]; var q_new = ""; // Parse query string url_parts = url_parts[0].split(/\?/); if (url_parts[1] != "undefined") { var queries = url_parts[1].split(/&/); for (var i in queries) { q_parts = queries[i].split(/=/); q_hash[q_parts[0]] = q_parts[1]; } } for (q_key in q_extra) { q_hash[q_key] = q_extra[q_key]; } // Reform query string for (q_key in q_hash) { q_new += "&" + q_key + "=" + q_hash[q_key]; } return url_parts[0] + "?" + q_new.substr(1) + "#" + anchor; } function goto(url, q_extra) { window.location.href = _reform_url(url, q_extra); } function reloadPage() { window.location.reload(); } function reloadParent() { window.parent.location.reload(); } function goto_d(url) { window.location.href = url; } function parent_goto_d(url) { window.parent.location.href = url; } function confirm_r(module, action, params, fn_success, fn_failure, message) { if (confirm(message)) { $("#MODBLK_"+params.mb_id).remove(); _ajax_request(module, action, params, fn_success, fn_failure); } } function remove_block(mb_id,mb_lang) { confirm_r('mod_tool', 'rm_mblock', {mb_id:mb_id}, rmblock_success, rmblock_failure, mb_lang=='zh_CN'?"鎮ㄧ‘璁ゅ垹闄よ妯″潡鍚?":"Delete the module block"); } function rmblock_success(response) { var o_result = _eval_json(response); if (!o_result) { return rmblock_failure(response); } if (o_result.result == "ERROR") { alert(o_result.errmsg); return false; } else if (o_result.result == "OK") { miss_block(o_result.dom_id); } else { return rmblock_failure(response); } } function rmblock_failure(response) { alert("Request failed!"); return false; } function miss_block(dom_id) { if (typeof(document.getElementById(dom_id)) != 'undefined') { $("#" + dom_id).hide("normal"); } } function resizeImg(el, maxwidth) { if (!maxwidth) { maxwidth = 280; } if (el.width > maxwidth) { el.height = el.height / el.width * maxwidth; el.width = maxwidth; } } function totop() { window.scroll(0,0); } function changePic(isTrue,id,url) { $.ajax({ type:"POST", url:url, beforeSend:function(data){ $("#"+id).attr('src','template/images/loader.gif'); }, success:function(data){ if(data == 1) { $("#"+id).attr('src','template/images/yes.gif').attr('alt','Yes'); } else { $("#"+id).attr('src','template/images/no.gif').attr('alt','No'); } }, error:function(data){ $("#"+id).attr('src','template/images/warning.gif'); } }); } function menuCollapse() { if(findCookie("collapseStatus=") == 'extend') { $("#menu_collapse").hide(1000); document.cookie = 'collapseStatus=collapse'; } else { $("#menu_collapse").show(1000); document.cookie = 'collapseStatus=extend'; } } function menuToolCollapse() { if(findCookie("collapseMenuToolStatus=") == 'menuToolExtend') { $("#menu_tool").hide("slow"); document.cookie = 'collapseMenuToolStatus=menuToolCollapse'; } else { $("#menu_tool").show("slow"); document.cookie = 'collapseMenuToolStatus=menuToolExtend'; } } function menuSystemCollapse() { if(findCookie("collapseMenuSystemStatus=") == 'menuSystemExtend') { $("#menu_system").hide("slow"); document.cookie = 'collapseMenuSystemStatus=menuSystemCollapse'; } else { $("#menu_system").show("slow"); document.cookie = 'collapseMenuSystemStatus=menuSystemExtend'; } } function findCookie(search) { var cookieValue; if (document.cookie.length > 0) { offset = document.cookie.indexOf(search) if (offset != -1) { offset += search.length ; end = document.cookie.indexOf(";", offset) if (end == -1) end = document.cookie.length; cookieValue = unescape(document.cookie.substring(offset, end)) } return cookieValue; } else { return false; } } function select_for_menu_item(text, id) { // window.top.show_selected(text); // window.top.set_tmp_id(id); // window.top.tb_remove(); parent.$('#showContents').contents().find('#menu_link_content_title').html(text); parent.$('#showContents').contents().find('#tmp_id').val(id); parent.$('#showContents').contents().find('#mi_selected_content_').attr('value',parent.$('#showContents').contents().find('#menu_link_content_title').html()); parent.$('#showContents').show(); parent.$('#showContents1').remove(); // parent.$('iframe:last').parent().dialog('close'); } function clickCheckbox() { var uid; uid = $('#uid').val(); $.ajax({ type: "GET", url: "index.php?_m=mod_wizard&_a=admin_wizard&_r=_ajax&action=wizard&uid="+uid, success:function(msg){ //alert(msg); }, error:function(msg){ //alert(msg); } }); } function updatecartstate(response) { var o_result = _eval_json(response); if (!o_result) { return addprodfailed(response); } if (o_result.result == "ERROR") { alert(o_result.errmsg); return false; } else if (o_result.result == "OK") { $("#disp_n_prds").html(o_result.n_prds); window.location.href = "index.php?_m=mod_cart&_a=viewcart"; return true; } else { return on_failure(response); } } function addprodfailed(response) { alert("璇锋眰澶辫触锛乗nRequest failed!"); return false; } function add2cart(p_id) { var p_num = document.getElementById("prod_num_" + p_id).value; if(/^[1-9]\d{0,}$/.test(p_num)) { _ajax_request("mod_cart", "addtocart", { p_id: p_id, p_num: p_num }, updatecartstate, addprodfailed); } else { alert("璇疯緭鍏ヨ嚜鐒舵暟锛乗nPlease input number!"); } } //鍙嫋鎷夛紝鍙樺昂瀵稿脊鍑烘 function popup_window(load_url, title_txt, popup_width, popup_height, fresh_window, relative_position_x, relative_position_y,no_sizeable,no_showMax,no_tag) { if (!title_txt) title_txt = ""; if (!popup_width) popup_width = 800; // if (!popup_height) popup_height = 480; if(typeof parseToURL=='undefined'){ function parseToURL(){ return ''; } } var loading = 'template/view/frontpage/loading.php'; if (!no_tag) loading = 'view/frontpage/loading.php'; var isMax = false; var posX = ($(window).width()-popup_width)/2;//X Y杞村潗鏍?浣垮脊鍑烘鍦ㄩ〉闈腑澶 var posY = 10; if(relative_position_x) posX += relative_position_x; if(relative_position_y) posY -= relative_position_y; var rndnum=makeRandomNum(100); var domId = 'dialog_' + rndnum; window._domidsession=rndnum; var tmp1 = ''; var tmp2 = ''; $('body').append("
"); $("#"+domId).dialog({ resizable: true, show: 'slide', title: title_txt, modal: true, autoOpen: true, position: [posX,posY], width: popup_width, height: popup_height, close: function(event,ui){ $('.ui-dialog').remove(); $("#"+domId).remove();//涓轰簡瑙e喅椤甸潰鍒锋柊寮瑰嚭妗嗗ぇ灏忓彉灏忕殑闂 if(!fresh_window) { window.location.reload();//鍏抽棴绐楀彛鏃跺埛鏂伴〉闈 } }, resizeStop: function(event,ui){ $('#showContents,#showContents1').attr({width:$("#"+domId).dialog( "option", "width")-40,height:$("#"+domId).dialog("option", "height")-68}); $("#"+domId).dialog( "option", "resizable", true ); }, open: function(event, ui) { window.setTimeout(function() { jQuery(document).unbind('mousedown.dialog-overlay') .unbind('mouseup.dialog-overlay'); }, 100); if(no_sizeable) { $("#"+domId).dialog( "option", "resizable", false ); } $("#"+domId).children().remove(); if (!popup_height) { tmp1 = $("#"+domId).css('height'); tmp2 = $(".ui-dialog").css('height'); $("#"+domId).append(""); $("#showContents2").attr('height','70px'); $("#"+domId).css('height','90px'); $(".ui-dialog").css('height','90px'); $("#"+domId).append(""); } else { $("#"+domId).append(""); } } }); //寮瑰嚭妗嗘坊鍔犳渶澶у寲鎸夐挳 if(!no_showMax && false) { $('max').appendTo('.ui-widget-header') .hover(function(){ $(this).addClass('ui-state-hover');//娣诲姞鍑归櫡鏁堟灉 },function(){ $(this).removeClass('ui-state-hover');//娉ㄩ攢鍑归櫡鏁堟灉 }).click(function(){ //娣诲姞鏈€澶у寲鍗曞嚮浜嬩欢 if(!isMax){ var _tmp=$(document).height()-5; if(_tmp>1000){ _tmp=900; } $("#"+domId).dialog( "option", "width", $(document).width()-5); $("#"+domId).dialog( "option", "height", _tmp); $("#"+domId).dialog( "option", "position", [0,0]); $('#showContents,#showContents1').attr({width:$("#"+domId).dialog( "option", "width")-40,height:$("#"+domId).dialog("option", "height")-68}); $("#"+domId).dialog( "option", "resizable", false );//鏈€澶у寲鍚庡氨涓嶈兘鍐嶇敤鎷栧姩鏉ヤ慨鏀瑰昂瀵镐簡 $('.ui-icon-closethick1').css('background-image','url("images/msize1.gif")');//鎶婃渶澶у寲鎸夐挳淇敼涓烘渶灏忓寲鎸夐挳 isMax = true; } else { if((popup_width >= $(document).width()-10) && (popup_height >= $(document).height()-10)){ popup_width = 640;//灏嗚杩樺師鐨勫昂瀵 popup_height = 480; } if (!popup_height) { iFrameWidthHeight(domId); } else { iFrameWidthHeight(domId,popup_height); } if($("#"+domId).dialog( "option", "height" ) + 70 <= parseInt($(window).height()) / 2 + 50) { $('.ui-dialog').css({"position":"absolute","left":posX,"_left":posX,"top":posY + 130,"_top":posY + 130,"width":popup_width,"_width":popup_width});//瀹氫綅寮瑰嚭妗嗕綅缃 } else { $('.ui-dialog').css({"position":"absolute","left":posX,"_left":posX,"top":10,"_top":10,"width":popup_width,"_width":popup_width});//瀹氫綅寮瑰嚭妗嗕綅缃 } $('#showContents,#showContents1').attr({width:(popup_width-40)}); $("#"+domId).dialog( "option", "resizable", true ); $('.ui-icon-closethick1').css('background-image','url("images/msize.gif")'); isMax = false; } }); } //ajax鑾峰彇鐩爣鐣岄潰 // $.ajax({ // type: "GET", // url: load_url, // dataType: "html", // timeout:10000, // success:function(msg){ // $("#"+domId).children().remove();//鍒犻櫎涓婁竴娆″姩鎬佹坊鍔犵殑ajax鍐呭 // $("#"+domId).append(msg); // }, // error:function(msg){ // $("#"+domId).children().remove(); // $("#"+domId).append("

error

"); // } // }); } //浜х敓闅忔満鏁 function makeRandomNum(n) { var rand_num = 0; rand_num = Math.floor(Math.random()*n+1); return rand_num; } //iframe鑷€傚簲闀垮 function iFrameWidthHeight(domId,popup_height,flag) { if(flag != 1) { $('#showContents2').remove(); } setTimeout(function(){ var ifm = ''; var subWeb = ''; if($('#showContents').css('display') != 'none') { ifm = document.getElementById("showContents"); subWeb = document.frames ? document.frames["showContents"].document : ifm.contentDocument; } else if($('#showContents1').css('display') != 'none') { ifm = document.getElementById("showContents1"); subWeb = document.frames ? document.frames["showContents1"].document : ifm.contentDocument; } else if($('#showContents2').css('display') != 'none') { ifm = document.getElementById("showContents2"); subWeb = document.frames ? document.frames["showContents2"].document : ifm.contentDocument; } if(ifm != null && subWeb != null) { // if((parseInt(subWeb.body.scrollHeight)+70+20) < parseInt($(window).height())){ if(!popup_height) { var heightval=subWeb.body.scrollHeight; var domheight=heightval; if ($.browser.safari) { heightval=subWeb.body.clientHeight; domheight=heightval; if(!heightval ) { heightval=subWeb.body.scrollHeight; domheight=heightval; } else domheight+=20; } ifm.height =heightval+30; $("#"+domId).dialog( "option", "height", parseInt(domheight)+85);//寮瑰嚭妗嗚嚜閫傚簲 } else { $("#"+domId).dialog( "option", "height", parseInt(popup_height));//寮瑰嚭妗嗚嚜閫傚簲 } // } else { // ifm.height = subWeb.body.scrollHeight; // $("#"+domId).dialog( "option", "height", parseInt(subWeb.body.scrollHeight)+70);//寮瑰嚭妗嗚嚜閫傚簲 // } if(flag != 1) { if((parseInt(subWeb.body.scrollHeight)+70) <= parseInt($(window).height()) / 2 + 50) { if(parseInt($('.ui-dialog').css("top")) + 130 <= 140) { $('.ui-dialog').css('top',parseInt($('.ui-dialog').css("top")) + 130); } } else { $('.ui-dialog').css('top',parseInt($('.ui-dialog').css("top"))); } } } },200); } function set_default_lang(lang_id,local,MOD_REWRITE) { $.ajax({ type: "GET", url: "admin/index.php?_m=mod_lang&_a=admin_make_default&_r=_ajax&l_id="+lang_id+"&lg="+local, success: function(data) { var o_result = _eval_json(data); if (o_result.local != 'zh_TW'){ if(MOD_REWRITE=="1"){ window.location = 'index.php?_m=frontpage&_a=index'; }else{ window.location = 'frontpage-index.html'; } } } }); } function popup_defe_window(options){ window._imageChooserDefered=new $.Deferred(); options=$.extend({},options); var title=options.title; var filetype=options.filetype; var url=options.url; url=url+"&_f="+filetype; popup_window(url,title,false,false,true,'','','','',1); return window._imageChooserDefered.promise(); }