﻿$(document).ready(function() {

    //    //庫存頁面連結
    $("a[href*='BiHistPage.aspx']").colorbox({ width: "90%", height: "90%", iframe: true });
});

//String For ReplaceAll
String.prototype.ReplaceAll = function(stringToFind, stringToReplace) {

    var temp = this;
    var index = temp.indexOf(stringToFind);
    while (index != -1) {
        temp = temp.replace(stringToFind, stringToReplace);
        index = temp.indexOf(stringToFind);

    }
    return temp;

}

function SetMarker(id, keyword) {
    $("#" + id).highlight(keyword);
}