// JavaScript Document
//
var UrlObject = new Object();
UrlObject.ucht = { url: "http://www.bravo-ent.com/index.aspx" };
UrlObject.uchs = { url: "http://cn.bravo-ent.com/index.aspx" };
//
//document=直接開;window.open=另開
function URL(i) {
    if (i == "award") {
        window.open(UrlObject['u' + i].url, 'awardwindow', 'height=585, width=580, top=0, left=0, toolbar=no, menubar=no,location=n o, status=no, scrollbars=yes, resizable=yes')
    } else {
        document.location.href = UrlObject['u' + i].url// + vars;
    }
}

// 給HTML連結偵測音量用
function MM_href(jsStr) {
    var vars = thisMovie("MenuSWF").getVolume();
    document.location.href = jsStr // + vars;
}
function Jump(e) {
    document["MenuSWF"].getVolume();
}
function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    } else {
        return document[movieName]
    }
}


