// TOP FLASH
function titleSwf(dnum){
    if(dnum==0){
        direc="";
    }else if(dnum==1){
        direc="../";
    }else if(dnum==2){
        direc="../../";
    }
 document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' height='110' width='390'><param name='movie' value='" + direc + "fac_title.swf'><param name='menu' value='false'><param name='quality' value='best'><param name='play' value='true'><embed height='110' pluginspage='http://www.macromedia.com/go/getflashplayer' src='" + direc + "fac_title.swf' type='application/x-shockwave-flash' width='390' quality='best' play='true' menu='false'></object>");
};

// Change BGCOLOR
function changeColor(num){
    if(num==0){
        document.getElementById("background").style.backgroundColor="#FF0000";
    }else if(num==1){
        document.getElementById("background").style.backgroundColor="#009900";
    }else if(num==2){
        document.getElementById("background").style.backgroundColor="#0000FF";
    }else if(num==3){
        document.getElementById("background").style.backgroundColor="#00CCFF";
    }else if(num==4){
        document.getElementById("background").style.backgroundColor="#FF00FF";
    }else if(num==5){
        document.getElementById("background").style.backgroundColor="#FFFF00";
    }else if(num==6){
        document.getElementById("background").style.backgroundColor="#FFFFFF";
    }else if(num==7){
        document.getElementById("background").style.backgroundColor="#808080";
    }else if(num==8){
        document.getElementById("background").style.backgroundColor="#000000";
    }
};
function changeImg(src){
    var bgImg = "url(goods/" + src + ")";
    document.getElementById("background").style.background=bgImg;
};
