﻿function CuteWebUI_AjaxUploader_OnStart() {
    var hidden = this;
    document.getElementById('upload_text_div').style.display = "none";
    hidden.internalobject.insertBtn.style.display = "none";
    hidden.internalobject.cancelBtn.style.visibility = "hidden";
}

function infoHover(div, state) {
    var divA = div + "a";
    var divB = div + "b";

    if (state == 0) {
        //off
        document.getElementById(divB).style.backgroundImage = "none";
        document.getElementById(divB).style.border = "1px solid #FFFFFF";
        document.getElementById(divA).style.border = "1px solid #d6d6d6";
    }
    else {
        //over
        document.getElementById(divB).style.backgroundImage = "url(./images/home/info_tab_bg.png)";
        document.getElementById(divA).style.border = "1px solid #303d4e";
        document.getElementById(divB).style.border = "1px solid #84a9d9";
    }
}

function changeUploadPanel(showDiv) {
    //alert('changeUploadPanel Ran');
    
    if (showDiv == 1) {
        document.getElementById('step1_a').style.display = 'inline';
        document.getElementById('step1_b').style.display = 'none';
        //document.getElementById('checkprice_btn').style.display = 'none';
    }

    if (showDiv == 2) {
        document.getElementById('step1_a').style.display = 'none';
        document.getElementById('step1_b').style.display = 'inline';
        //document.getElementById('checkprice_btn').style.display = 'inline';
    }


    //initFlashLoader();
    //document.getElementById('flash_loader_wrap').style.display = 'none';
}

function showFlashLoader(shift) {
    if (shift) {
        document.getElementById('flash_loader_wrap').style.marginTop = '-93px';
        document.getElementById('flash_loader_wrap').style.display = 'inline';
    }
    else {
        document.getElementById('flash_loader_wrap').style.display = 'inline';
    }
}


function initFlashLoader() {
    var flashvars = {};
    var params = {};
    params.wmode = "transparent";
    swfobject.embedSWF("./Flash/wizard_load_white_bg.swf", "flash_loader", "50", "50", "9.0.0", "expressInstall.swf", flashvars, params);
}

function initWhiteFlashLoader() {
    var flashvars = {};
    var params = {};
    params.wmode = "transparent";
    swfobject.embedSWF("./Flash/wizard_load_3.swf", "flash_loader2", "50", "50", "9.0.0", "expressInstall.swf", flashvars, params);
}

function initSplashFlash() {
    var flashvars = {};
    var params = {};
    params.wmode = "transparent";
    swfobject.embedSWF("mainFlash_v2.swf", "splash_write", "600", "285", "9.0.0", "expressInstall.swf", flashvars, params);
}



function cqHover(state) {
    if (state) {
        document.getElementById('cqDiv').style.backgroundPosition = '-241px -96px';
    }
    else {
        document.getElementById('cqDiv').style.backgroundPosition = '-241px -68px';
    }
}