// JavaScript Document

//HTMLのURLの後の #○○ の文字をゲットして、FlashVars に渡す

/*function setHash(val) {
    if(document.location.hash != "#" + val) {
        document.location.hash = val;
    }
}*/

str = location.search;
//str = str.substring(1,str.length);
//res = str.split("?");

//pagehash = "c_stage=" + document.location.hash;
//pagehash = "c_stage=" + 2;
pagehash = "c_stage=" + str;
