
var distributors = [
['ISC BioExpress','www.bioexpress.com','ISC_BioExpress'],
['Sigma-Aldrich','www.sigmaaldrich.com','Sigma_Aldrich'],
['Genesee Scientific, Inc','www.geneseesci.com','Genesee_Scientific'],
['Fisher Scientific Company','www.fishersci.ca','Fisher_Scientific'],
['Alpha Laboratories','www.alphalabs.co.uk','Alpha_Laboratories'],
['Interpath','www.interpath.com.au','Interpath'],
['Dominique Dutscher','www.dutscher.com','Dominique_Dutscher'],
['RayLab NZ Ltd','www.raylab.co.nz','RayLab'],
['Dunn Labortechnik GmbH','www.dunnlab.de','Dunn'],
['Degroot Laboratory Equipment Ltd','www.degroot.co.il','Degroot']
]

var focusSwitch = false;
var productSelection = "";


function distribName(url) {
    var target = new Array();
    var pattern = new RegExp(url);
    for(var i=0; i<distributors.length; i++){
        target = distributors[i];
        if(pattern.test(target[1])) return target[0];
    }
}


function safeDistribName(url) {
    var target = new Array();
    var pattern = new RegExp(url);
    for(var i=0; i<distributors.length; i++){
        target = distributors[i];
        if(pattern.test(target[1])) return target[2];
    }
}


function refRoot(data) {
    var ref = new Array();
    ref = data.split(/\/\/|\/|\?/g,4);
    //ref{0} s.b. "http:", ref{1} s.b. "www.something.com", ref[2] s.b. any subdirectories or specific filenames, query, etc.
    return ref[1];
}


//There is a better version of this function in the stats.js script. This script can use it as long as stats.js is included in the page.
//function findCookieValue(key) {
//	var allcookies = document.cookie;
//	var ref = new Array();			
//	ref = allcookies.split(/;/g);
//	var target;
//	var pattern = new RegExp(key);
//	while ((target = ref.pop()) && !pattern.test(target));
//	ref = target.split(/=/g);
//	return ref[1];
//}


function reportPreference(target){
    //If the prefdist cookie does not exist, notify no preferred distributor has been chosen and link to choice page.
    if(-1 == document.cookie.indexOf("prefdist=")) {
        with(target) {
            firstChild.nodeValue = "You have not chosen a distributor";
            firstChild.nextSibling.setAttribute("href", "distribchoice.html");
            firstChild.nextSibling.firstChild.nodeValue = "";
            firstChild.nextSibling.nextSibling.nodeValue = ".  ";
            firstChild.nextSibling.nextSibling.nextSibling.firstChild.nodeValue = "[Choose One Now]";
            }
    }
    //If the prefdist cookie does exist, read it. Then use the value to display the preferred distributor name with links.
    else {
        var root = findCookieValue("prefdist=");
        var url = "http://" + root;
        var peakperformer = distribName(root);
        with(target) {
            firstChild.nodeValue = "Your chosen distributor is ";
            firstChild.nextSibling.setAttribute("href", url);
            firstChild.nextSibling.firstChild.nodeValue = peakperformer;
            firstChild.nextSibling.nextSibling.nodeValue = ",  " + root + " .  ";
            firstChild.nextSibling.nextSibling.nextSibling.firstChild.nodeValue = "[Change]";
            }
    }
}


function showPreference() {
    var targets = new Array;
    var i = 1;
    while(document.getElementById("pref"+i)){
        targets.push(document.getElementById("pref"+i));
        i++;
    }
    //Diagnostics:
    //alert("Here1");
    //if(targets) alert("Targets length = " + targets.length);
    //alert(targets[0].nodeName);
    //alert(targets[0].firstChild.nodeName);//#text
    //alert(targets[0].firstChild.nodeValue);//You have not chosen a distributor
    //alert(targets[0].firstChild.nextSibling.nodeName);//A
    //alert(targets[0].firstChild.nextSibling.getAttribute("href"));//distribchoice.html
    //targets[0].firstChild.nextSibling.setAttribute("href","index.html");
    //alert(targets[0].firstChild.nextSibling.getAttribute("href"));//index.html
    //alert(targets[0].firstChild.nextSibling.firstChild.nodeName);//#text
    //alert(targets[0].firstChild.nextSibling.firstChild.nodeValue);//..
    //alert(targets[0].firstChild.nextSibling.nextSibling.nodeName);//#text
    //alert(targets[0].firstChild.nextSibling.nextSibling.nodeValue);//.
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.nodeName);//A
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.getAttribute("href"));//distribchoice.html
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.firstChild.nodeName);//#text
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.firstChild.nodeValue);//[Choose One Now]
    for(var i=0; i<targets.length; i++){
        reportPreference(targets[i]);
    }
    if(focusSwitch) buyItem(productSelection);
}


function showPref2() {
    var targets = new Array;
    var i = 1;
    while(document.getElementById("pref"+i)){
        targets.push(document.getElementById("pref"+i));
        i++;
    }
    //Diagnostics:
    //alert("Here1");
    //if(targets) alert("Targets length = " + targets.length);
    //alert(targets[0].nodeName);
    //alert(targets[0].firstChild.nodeName);//#text
    //alert(targets[0].firstChild.nodeValue);//You have not chosen a distributor
    //alert(targets[0].firstChild.nextSibling.nodeName);//A
    //alert(targets[0].firstChild.nextSibling.getAttribute("href"));//distribchoice.html
    //targets[0].firstChild.nextSibling.setAttribute("href","index.html");
    //alert(targets[0].firstChild.nextSibling.getAttribute("href"));//index.html
    //alert(targets[0].firstChild.nextSibling.firstChild.nodeName);//#text
    //alert(targets[0].firstChild.nextSibling.firstChild.nodeValue);//..
    //alert(targets[0].firstChild.nextSibling.nextSibling.nodeName);//#text
    //alert(targets[0].firstChild.nextSibling.nextSibling.nodeValue);//.
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.nodeName);//A
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.getAttribute("href"));//distribchoice.html
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.firstChild.nodeName);//#text
    //alert(targets[0].firstChild.nextSibling.nextSibling.nextSibling.firstChild.nodeValue);//[Choose One Now]
    for(var i=0; i<targets.length; i++){
        reportPreference(targets[i]);
    }
    if(focusSwitch) buyIt2(productSelection);
}


var linklookup = [
[
['excelcatno','www.sigmaaldrich.com'],
['L-MW-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722693|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['LS-MW-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722707|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['RSV-L175-S05','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=R1400|SIGMA&N5=Product%20No.|BRAND_KEY&F=SPEC'],
['RSV-0175-S05','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=R9384|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['RSV-L175-N10','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=R1525|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['RSV-0175-N10','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=R9259|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SPR-L-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z723193|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SPR-L-S10','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z376779|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['P-0010-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=P1361|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC&lang=en_US'],
['P-0010-S25','XX'],
['P-0011-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=P1611|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC&lang=en_US'],
['P-0011-S25','XX'],
['SER-0020-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=P1736|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC&lang=en_US'],
['P-0020-S25','XX'],
['SER-0022-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=P1861|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC&lang=en_US'],
['P-0022-S25','XX'],
['P-0050-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=P1986|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SER-0050-S25','XX'],
['P-S050-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z723231|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['P-0100-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=P2236|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['P-0100-S25','XX'],
['P-010W-S25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=P2361|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['P-S100-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z723258|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['P-0250-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=P2486|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['P-0250-S10','XX'],
['P-0500-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=P3236|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['A-0020-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722669|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['ASP-0050-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722677|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['ASP-010W-S01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=Z722685|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['EZP-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721581|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['EZPS-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721603|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['EZP-PRNA-10','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721611|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['EZPS-PRNA-10','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721638|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['ZAF-PE-50','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721646|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['ZAFS-PE-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721654|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['XP-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722502|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['XPS-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722529|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC&lang=en_US'],
['100-THER-PLT','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z369675|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['STR-THER-PLT','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z369683|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['TS-2x8-50','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721492|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['TSA-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z723304|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['TS-RT2-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707465|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['TS-RT5-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707473|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['TS-RT2RR-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722553|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['TSS-RTQ-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=Z734438|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['BK-50','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722537|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['BKS-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722545|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['WT-50','http://www.sigmaaldrich.com/catalog/ProductDetail.do?lang=en&N4=Z732117|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['B-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707430|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC&lang=en_US'],
['BS-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=A9224|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['PDL-5','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722715|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['AF-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=A2350|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['AFS-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707422|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['F-96-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721549|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['F-384-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721557|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['FC-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722634|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['FCS-25','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z722642|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['100-SEAL-PLT','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z369659|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['STR-SEAL-PLT','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z369667|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['100-THIN-PLT','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707406|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['STR-THIN-PLT','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707414|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['RL-PLT-01','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=R1275|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SP-IDG-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721417|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SP-IDL-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721425|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SP-IDO-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721433|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SP-IDR-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721441|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SP-IDB-100','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721468|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SP-IDA-10','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721476|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SPS-IDA-10','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z721484|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SP-2x8-50','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707384|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['SPS-2x8-50','http://www.sigmaaldrich.com/catalog/ProductDetail.do?N4=Z707392|SIGMA&N5=SEARCH_CONCAT_PNO|BRAND_KEY&F=SPEC'],
['RRTS-79x65','XX'],
['RF-80x100','XX'],
['RB-81x100','XX'],
],
[
['excelcatno','www.bioexpress.com'],
['L-MW-100','http://www.bioexpress.com/index.html?search_val=L-MW-100&imageField.x=9&imageField.y=12&wscdet_show=000000&search_nums=TRUE'],
['LS-MW-25','http://www.bioexpress.com/index.html?search_val=LS-MW-25&imageField.x=9&imageField.y=13&wscdet_show=000000&search_nums=TRUE'],
['RSV-L175-S05','http://www.bioexpress.com/index.html?search_val=RSV-L175-S05&imageField.x=9&imageField.y=13&wscdet_show=000000&search_nums=TRUE'],
['RSV-0175-S05','http://www.bioexpress.com/index.html?search_val=RSV-L175-S05&imageField.x=9&imageField.y=13&wscdet_show=000000&search_nums=TRUE'],
['RSV-L175-N10','http://www.bioexpress.com/index.html?search_val=RSV-L175-S05&imageField.x=9&imageField.y=13&wscdet_show=000000&search_nums=TRUE'],
['RSV-0175-N10','http://www.bioexpress.com/index.html?search_val=RSV-L175-S05&imageField.x=9&imageField.y=13&wscdet_show=000000&search_nums=TRUE'],
['SPR-L-S01','http://www.bioexpress.com/index.html?search_val=SPR-L-S01&imageField.x=10&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['SPR-L-S10','http://www.bioexpress.com/index.html?search_val=SPR-L-S01&imageField.x=10&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['P-0010-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0010-S25','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0011-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0011-S25','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['SER-0020-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0020-S25','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['SER-0022-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0022-S25','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0050-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['SER-0050-S25','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-S050-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0100-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0100-S25','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-010W-S25','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-S100-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0250-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0250-S10','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['P-0500-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424150'],
['A-0020-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424180'],
['ASP-0050-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424180'],
['ASP-010W-S01','http://www.bioexpress.com/index.html?wscdet_show=000000000400424000424180'],
['EZP-100','http://www.bioexpress.com/index.html?search_val=EZP-100&imageField.x=10&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['EZPS-25','http://www.bioexpress.com/index.html?search_val=EZPS-25&imageField.x=8&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['EZP-PRNA-10','http://www.bioexpress.com/index.html?search_val=EZP-PRNA-10&imageField.x=9&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['EZPS-PRNA-10','http://www.bioexpress.com/index.html?search_val=EZPS-PRNA-10&imageField.x=14&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['ZAF-PE-50','http://www.bioexpress.com/index.html?search_val=ZAF-PE-50&imageField.x=8&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['ZAFS-PE-25','http://www.bioexpress.com/index.html?search_val=ZAFS-PE-25&imageField.x=7&imageField.y=7&wscdet_show=000000&search_nums=TRUE'],
['XP-100','http://www.bioexpress.com/index.html?search_val=XPS-25&imageField.x=11&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['XPS-25','http://www.bioexpress.com/index.html?search_val=XPS-25&imageField.x=11&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['100-THER-PLT','http://www.bioexpress.com/index.html?search_val=100-THER-PLT&imageField.x=8&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['STR-THER-PLT','http://www.bioexpress.com/index.html?search_val=STR-THER-PLT&imageField.x=16&imageField.y=7&wscdet_show=000000&search_nums=TRUE'],
['TS-2x8-50','http://www.bioexpress.com/index.html?wscdet_show=000000000350353000353900353953'],
['TSA-100','http://www.bioexpress.com/index.html?search_val=TSA-100&imageField.x=10&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['TS-RT2-100','http://www.bioexpress.com/index.html?wscdet_show=000000000350353000353900353950'],
['TS-RT5-100','http://www.bioexpress.com/index.html?wscdet_show=000000000350353000353900353950'],
['TS-RT2RR-100','http://www.bioexpress.com/index.html?search_val=TS-RT2RR-100&imageField.x=12&imageField.y=9&wscdet_show=000000&search_nums=TRUE'],
['TSS-RTQ-100','http://www.bioexpress.com/index.html?search_val=TSS-RTQ-100+&imageField.x=9&imageField.y=8&wscdet_show=000000'],
['BK-50','http://www.bioexpress.com/index.html?search_val=BK-50&imageField.x=5&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['BKS-25','http://www.bioexpress.com/index.html?search_val=BKS-25&imageField.x=10&imageField.y=9&wscdet_show=000000&search_nums=TRUE'],
['WT-50','XX'],
['B-100','http://www.bioexpress.com/index.html?wscdet_show=000000000300336000353965'],
['BS-25','http://www.bioexpress.com/index.html?search_val=BS-25&imageField.x=13&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['PDL-5','http://www.bioexpress.com/index.html?search_val=PDL-5&imageField.x=6&imageField.y=9&wscdet_show=000000&search_nums=TRUE'],
['AF-100','http://www.bioexpress.com/index.html?search_val=AFS-25&imageField.x=12&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['AFS-25','http://www.bioexpress.com/index.html?search_val=AFS-25&imageField.x=12&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['F-96-100','http://www.bioexpress.com/index.html?search_val=F-96-100&imageField.x=8&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['F-384-100','http://www.bioexpress.com/index.html?search_val=F-384-100&imageField.x=7&imageField.y=12&wscdet_show=000000&search_nums=TRUE'],
['FC-100','http://www.bioexpress.com/index.html?search_val=FCS-25&imageField.x=13&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['FCS-25','http://www.bioexpress.com/index.html?search_val=FCS-25&imageField.x=13&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['100-SEAL-PLT','http://www.bioexpress.com/index.html?search_val=100-SEAL-PLT&imageField.x=6&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['STR-SEAL-PLT','http://www.bioexpress.com/index.html?search_val=100-SEAL-PLT&imageField.x=6&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['100-THIN-PLT','http://www.bioexpress.com/index.html?search_val=100-SEAL-PLT&imageField.x=6&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['STR-THIN-PLT','http://www.bioexpress.com/index.html?search_val=100-SEAL-PLT&imageField.x=6&imageField.y=11&wscdet_show=000000&search_nums=TRUE'],
['RL-PLT-01','http://www.bioexpress.com/index.html?search_val=RL-PLT-01&imageField.x=11&imageField.y=10&wscdet_show=000000&search_nums=TRUE'],
['SP-IDG-100','http://www.bioexpress.com/index.html?search_val=SP-IDG-100&imageField.x=7&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['SP-IDL-100','http://www.bioexpress.com/index.html?search_val=SP-IDG-100&imageField.x=7&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['SP-IDO-100','http://www.bioexpress.com/index.html?search_val=SP-IDG-100&imageField.x=7&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['SP-IDR-100','http://www.bioexpress.com/index.html?search_val=SP-IDG-100&imageField.x=7&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['SP-IDB-100','http://www.bioexpress.com/index.html?search_val=SP-IDG-100&imageField.x=7&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['SP-IDA-10','http://www.bioexpress.com/index.html?search_val=SP-IDG-100&imageField.x=7&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['SPS-IDA-10','http://www.bioexpress.com/index.html?search_val=SP-IDG-100&imageField.x=7&imageField.y=8&wscdet_show=000000&search_nums=TRUE'],
['SP-2x8-50','http://www.bioexpress.com/index.html?wscdet_show=000000000350353000353900353980'],
['SPS-2x8-50','http://www.bioexpress.com/index.html?wscdet_show=000000000350353000353900353980'],
['RRTS-79x65','XX'],
['RF-80x100','XX'],
['RB-81x100','XX'],
],
[
['excelcatno','www.geneseesci.com'],
['L-MW-100','https://www.geneseesci.com/ProductInfo.php?productID=12-634'],
['LS-MW-25','https://www.geneseesci.com/ProductInfo.php?productID=12-635'],
['RSV-L175-S05','https://www.geneseesci.com/ProductInfo.php?productID=12-118'],
['RSV-0175-S05','https://www.geneseesci.com/ProductInfo.php?productID=12-119'],
['RSV-L175-N10','https://www.geneseesci.com/ProductInfo.php?productID=12-116'],
['RSV-0175-N10','https://www.geneseesci.com/ProductInfo.php?productID=12-117'],
['SPR-L-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-114'],
['SPR-L-S10','https://www.geneseesci.com/ProductInfo.php?productID=12-115'],
['P-0010-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-100'],
['P-0010-S25','https://www.geneseesci.com/ProductInfo.php?productID=12-108'],
['P-0011-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-183'],
['P-0011-S25','https://www.geneseesci.com/ProductInfo.php?productID=12-183-B'],
['SER-0020-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-101'],
['P-0020-S25','https://www.geneseesci.com/ProductInfo.php?productID=12-109'],
['SER-0022-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-184'],
['P-0022-S25','https://www.geneseesci.com/ProductInfo.php?productID=12-184-B'],
['P-0050-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-102'],
['SER-0050-S25','https://www.geneseesci.com/ProductInfo.php?productID=12-110'],
['P-S050-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-188'],
['P-0100-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-104'],
['P-0100-S25','https://www.geneseesci.com/ProductInfo.php?productID=12-112'],
['P-010W-S25','https://www.geneseesci.com/ProductInfo.php?productID=12-113'],
['P-S100-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-189'],
['P-0250-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-106'],
['P-0250-S10','https://www.geneseesci.com/ProductInfo.php?productID=12-120'],
['P-0500-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-107'],
['A-0020-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-180'],
['ASP-0050-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-181'],
['ASP-010W-S01','https://www.geneseesci.com/ProductInfo.php?productID=12-182'],
['EZP-100','https://www.geneseesci.com/ProductInfo.php?productID=12-121'],
['EZPS-25','https://www.geneseesci.com/ProductInfo.php?productID=12-122'],
['EZP-PRNA-10','https://www.geneseesci.com/ProductInfo.php?productID=12-123'],
['EZPS-PRNA-10','https://www.geneseesci.com/ProductInfo.php?productID=12-124'],
['ZAF-PE-50','https://www.geneseesci.com/ProductInfo.php?productID=12-130'],
['ZAFS-PE-25','https://www.geneseesci.com/ProductInfo.php?productID=12-131'],
['XP-100','https://www.geneseesci.com/ProductInfo.php?productID=12-140'],
['XPS-25','https://www.geneseesci.com/ProductInfo.php?productID=12-141'],
['100-THER-PLT','https://www.geneseesci.com/ProductInfo.php?productID=12-168'],
['STR-THER-PLT','https://www.geneseesci.com/ProductInfo.php?productID=12-532'],
['TS-2x8-50','https://www.geneseesci.com/ProductInfo.php?productID=12-142'],
['TSA-100','https://www.geneseesci.com/ProductInfo.php?productID=12-538'],
['TS-RT2-100','https://www.geneseesci.com/ProductInfo.php?productID=12-529'],
['TS-RT5-100','https://www.geneseesci.com/ProductInfo.php?productID=12-530'],
['TS-RT2RR-100','https://www.geneseesci.com/ProductInfo.php?productID=12-170'],
['TSS-RTQ-100','https://www.geneseesci.com/ProductInfo.php?productID=12-537'],
['BK-50','https://www.geneseesci.com/ProductInfo.php?productID=12-200'],
['BKS-25','https://www.geneseesci.com/ProductInfo.php?productID=12-201'],
['WT-50','XX'],
['B-100','https://www.geneseesci.com/ProductInfo.php?productID=12-630'],
['BS-25','https://www.geneseesci.com/ProductInfo.php?productID=12-631'],
['PDL-5','https://www.geneseesci.com/ProductInfo.php?productID=12-202'],
['AF-100','https://www.geneseesci.com/ProductInfo.php?productID=12-169'],
['AFS-25','https://www.geneseesci.com/ProductInfo.php?productID=12-531'],
['F-96-100','https://www.geneseesci.com/ProductInfo.php?productID=12-632'],
['F-384-100','https://www.geneseesci.com/ProductInfo.php?productID=12-633'],
['FC-100','https://www.geneseesci.com/ProductInfo.php?productID=12-151'],
['FCS-25','https://www.geneseesci.com/ProductInfo.php?productID=12-152'],
['100-SEAL-PLT','https://www.geneseesci.com/ProductInfo.php?productID=12-167'],
['STR-SEAL-PLT','https://www.geneseesci.com/ProductInfo.php?productID=12-520'],
['100-THIN-PLT','https://www.geneseesci.com/ProductInfo.php?productID=12-533'],
['STR-THIN-PLT','https://www.geneseesci.com/ProductInfo.php?productID=12-534'],
['RL-PLT-01','https://www.geneseesci.com/ProductInfo.php?productID=12-203'],
['SP-IDG-100','https://www.geneseesci.com/ProductInfo.php?productID=12-521A'],
['SP-IDL-100','https://www.geneseesci.com/ProductInfo.php?productID=12-521A'],
['SP-IDO-100','https://www.geneseesci.com/ProductInfo.php?productID=12-521A'],
['SP-IDR-100','https://www.geneseesci.com/ProductInfo.php?productID=12-521A'],
['SP-IDB-100','https://www.geneseesci.com/ProductInfo.php?productID=12-521A'],
['SP-IDA-10','https://www.geneseesci.com/ProductInfo.php?productID=12-521A'],
['SPS-IDA-10','XX'],
['SP-2x8-50','https://www.geneseesci.com/ProductInfo.php?productID=12-535'],
['SPS-2x8-50','https://www.geneseesci.com/ProductInfo.php?productID=12-536'],
['RRTS-79x65','XX'],
['RF-80x100','XX'],
['RB-81x100','XX'],
],
[
['excelcatno','www.alphalabs.co.uk'],
['L-MW-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=L-MW-100&countryID='],
['LS-MW-25','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LS-MW-25&countryID='],
['EZP-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=EZP-100&countryID='],
['EZPS-25','http://www.alphalabs.co.uk/Product_CatNo.asp?code=EZPS-25&countryID='],
['EZP-PRNA-10','http://www.alphalabs.co.uk/Product_CatNo.asp?code=EZP-PRNA-10&countryID='],
['EZPS-PRNA-10','http://www.alphalabs.co.uk/Product_CatNo.asp?code=EZPS-PRNA-10&countryID='],
['ZAF-PE-50','http://www.alphalabs.co.uk/Product_CatNo.asp?code=ZAF-PE-50&countryID='],
['ZAFS-PE-25','http://www.alphalabs.co.uk/Product_CatNo.asp?code=ZAFS-PE-25&countryID='],
['XP-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2788&countryID='],
['XPS-25','http://www.alphalabs.co.uk/Product_CatNo.asp?code=XPS-25&countryID='],
['100-THER-PLT','http://www.alphalabs.co.uk/product_CatNo.asp?code=LW2776'],
['STR-THER-PLT','http://www.alphalabs.co.uk/product_CatNo.asp?code=LW2777'],
['TS-2x8-50','http://www.alphalabs.co.uk/Product_CatNo.asp?code=TS-2X8-50&countryID='],
['TSA-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=TSA-100&countryID='],
['TS-RT2-100','http://www.alphalabs.co.uk/product_CatNo.asp?code=LW2786'],
['TS-RT5-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2787&countryID='],
['TS-RT2RR-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=TS-RT2RR-100&countryID='],
['TSS-RTQ-100','XX'],
['BK-50','http://www.alphalabs.co.uk/Product_CatNo.asp?code=BK-50&countryID='],
['BKS-25','http://www.alphalabs.co.uk/Product_CatNo.asp?code=BKS-25&countryID='],
['WT-50','XX'],
['B-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2782&countryID='],
['BS-25','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2783&countryID='],
['PDL-5','http://www.alphalabs.co.uk/Product_CatNo.asp?code=PDL-5&countryID='],
['AF-100','http://www.alphalabs.co.uk/product_CatNo.asp?code=LW2780'],
['AFS-25','http://www.alphalabs.co.uk/product_CatNo.asp?code=LW2781'],
['F-96-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=F-96-100&countryID='],
['F-384-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=F-384-100&countryID='],
['FC-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=FC-100&countryID='],
['FCS-25','http://www.alphalabs.co.uk/Product_CatNo.asp?code=FCS-25&countryID='],
['100-SEAL-PLT','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2770&ProdID=761&CatID=132&countryID='],
['STR-SEAL-PLT','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2771&ProdID=761&CatID=132&countryID='],
['100-THIN-PLT','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2774&countryID='],
['STR-THIN-PLT','http://www.alphalabs.co.uk/Product_CatNo.asp?code=LW2775&countryID='],
['RL-PLT-01','http://www.alphalabs.co.uk/Product_CatNo.asp?code=RL-PLT-01&countryID='],
['SP-IDG-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SP-IDG-100&countryID='],
['SP-IDL-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SP-IDG-100&countryID='],
['SP-IDO-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SP-IDG-100&countryID=k'],
['SP-IDR-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SP-IDG-100&countryID='],
['SP-IDB-100','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SP-IDG-100&countryID='],
['SP-IDA-10','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SP-IDG-100&countryID='],
['SPS-IDA-10','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SP-IDG-100&countryID='],
['SP-2x8-50','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SPS-2X8-50&countryID='],
['SPS-2x8-50','http://www.alphalabs.co.uk/Product_CatNo.asp?code=SPS-2X8-50&countryID='],
],
[
['excelcatno','www.interpath.com.au'],
['RSV-L175-S05','http://www.interpath.com.au/products.html'],
['RSV-0175-S05','http://www.dunnlab.de/pdf/products.html'],
['RSV-L175-N10','http://www.interpath.com.au/products.html'],
['RSV-0175-N10','http://www.interpath.com.au/products.html'],
['L-MW-100','http://www.interpath.com.au/excelscientific.pdf#page=7&zoom=100,0,840'],
['LS-MW-25','http://www.interpath.com.au/excelscientific.pdf#page=7&zoom=100,0,840'],
['EZP-100','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,70'],
['EZPS-25','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,70'],
['EZP-PRNA-10','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,400'],
['EZPS-PRNA-10','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,400'],
['ZAF-PE-50','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,600'],
['ZAFS-PE-25','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,600'],
['XP-100','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,800'],
['XPS-25','http://www.interpath.com.au/excelscientific.pdf#page=6&zoom=100,0,800'],
['100-THER-PLT','http://www.interpath.com.au/excelscientific.pdf#page=5&zoom=100,0,70'],
['STR-THER-PLT','http://www.interpath.com.au/excelscientific.pdf#page=5&zoom=100,0,70'],
['TS-2x8-50','http://www.interpath.com.au/excelscientific.pdf#page=5&zoom=100,0,550'],
['TSA-100','http://www.interpath.com.au/excelscientific.pdf#page=5&zoom=100,0,400'],
['TS-RT2-100','http://www.interpath.com.au/excelscientific.pdf#page=5&zoom=100,0,650'],
['TS-RT5-100','http://www.interpath.com.au/excelscientific.pdf#page=5&zoom=100,0,650'],
['TS-RT2RR-100','http://www.interpath.com.au/excelscientific.pdf#page=5&zoom=100,0,840'],
['TSS-RTQ-100','http://www.interpath.com.au'],
['BK-50','http://www.interpath.com.au/excelscientific.pdf#page=7&zoom=100,0,300'],
['BKS-25','http://www.interpath.com.au/excelscientific.pdf#page=7&zoom=100,0,300'],
['WT-50','http://www.interpath.com.au/excelscientific.pdf#page=7&zoom=100,0,600'],
['B-100','http://www.interpath.com.au/excelscientific.pdf#page=7&zoom=100,0,70'],
['BS-25','http://www.interpath.com.au/excelscientific.pdf#page=7&zoom=100,0,70'],
['PDL-5','http://www.interpath.com.au/excelscientific.pdf#page=8&zoom=100,0,70'],
['AF-100','http://www.interpath.com.au/excelscientific.pdf#page=4&zoom=100,0,70'],
['AFS-25','http://www.interpath.com.au/excelscientific.pdf#page=4&zoom=100,0,70'],
['F-96-100','http://www.interpath.com.au/excelscientific.pdf#page=4&zoom=100,0,400'],
['F-384-100','http://www.interpath.com.au/excelscientific.pdf#page=4&zoom=100,0,640'],
['FC-100','http://www.interpath.com.au/excelscientific.pdf#page=4&zoom=100,0,850'],
['FCS-25','http://www.interpath.com.au/excelscientific.pdf#page=4&zoom=100,0,850'],
['100-SEAL-PLT','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,70'],
['STR-SEAL-PLT','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,70'],
['100-THIN-PLT','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,70'],
['STR-THIN-PLT','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,70'],
['RL-PLT-01','http://www.interpath.com.au/excelscientific.pdf#page=8&zoom=100,0,70'],
['SP-IDG-100','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,450'],
['SP-IDL-100','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,450'],
['SP-IDO-100','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,450'],
['SP-IDR-100','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,450'],
['SP-IDB-100','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,450'],
['SP-IDA-10','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,450'],
['SPS-IDA-10','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,450'],
['SP-2x8-50','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,700'],
['SPS-2x8-50','http://www.interpath.com.au/excelscientific.pdf#page=3&zoom=100,0,700'],
],
[
['excelcatno','www.dutscher.com'],
['L-MW-100','http://www.dutscher.com','UNKNOWN'],
['LS-MW-25','http://www.dutscher.com','UNKNOWN'],
['RSV-L175-S05','http://www.dutscher.com','UNKNOWN'],
['RSV-0175-S05','http://www.dutscher.com','UNKNOWN'],
['RSV-L175-N10','http://www.dutscher.com','UNKNOWN'],
['RSV-0175-N10','http://www.dutscher.com','UNKNOWN'],
['SPR-L-S01','http://www.dutscher.com','UNKNOWN'],
['SPR-L-S10','http://www.dutscher.com','UNKNOWN'],
['EZP-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760216'],
['EZPS-25','http://www.dutscher.com','UNKNOWN'],
['EZP-PRNA-10','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760217'],
['EZPS-PRNA-10','http://www.dutscher.com','UNKNOWN'],
['ZAF-PE-50','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760220'],
['ZAFS-PE-25','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760221'],
['XP-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760234'],
['XPS-25','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760235'],
['100-THER-PLT','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760206'],
['STR-THER-PLT','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760207'],
['TS-2x8-50','http://www.dutscher.com','UNKNOWN'],
['TSA-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760229'],
['TS-RT2-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760208'],
['TS-RT5-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760209'],
['TS-RT2RR-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760236'],
['TSS-RTQ-100','http://www.dutscher.com','UNKNOWN'],
['BK-50','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760241'],
['BKS-25','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760242'],
['WT-50','http://www.dutscher.com','UNKNOWN'],
['B-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760214'],
['BS-25','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760215'],
['PDL-5','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760230'],
['AF-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760212'],
['AFS-25','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760213'],
['F-96-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760231'],
['F-384-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760232'],
['FC-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760243'],
['FCS-25','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760244'],
['100-SEAL-PLT','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760200'],
['STR-SEAL-PLT','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760201'],
['100-THIN-PLT','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760204'],
['STR-THIN-PLT','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760205'],
['RL-PLT-01','http://www.dutscher.com','UNKNOWN'],
['SP-IDG-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760222'],
['SP-IDL-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760223'],
['SP-IDO-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760224'],
['SP-IDR-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760225'],
['SP-IDB-100','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760226'],
['SP-IDA-10','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760227'],
['SPS-IDA-10','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760228'],
['SP-2x8-50','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760202'],
['SPS-2x8-50','http://www.dutscher.com/frontoffice/produitDisplay.do?referenceId=760203'],
],
[
['excelcatno','www.fishersci.ca'],
['L-MW-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3598033'],
['LS-MW-25','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3598033'],
['EZP-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606034'],
['EZPS-25','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606034'],
['EZP-PRNA-10','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606034'],
['EZPS-PRNA-10','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606034'],
['ZAF-PE-50','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606045'],
['ZAFS-PE-25','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606045'],
['XP-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606035'],
['XPS-25','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606035'],
['100-THER-PLT','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606037'],
['STR-THER-PLT','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606037'],
['TS-2x8-50','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606038'],
['TSA-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606041'],
['TS-RT2-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606039'],
['TS-RT5-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606039'],
['TS-RT2RR-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606040'],
['TSS-RTQ-100','XX'],
['BK-50','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3609452'],
['BKS-25','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3609452'],
['WT-50','XX'],
['B-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3609294'],
['BS-25','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3609294'],
['PDL-5','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606036'],
['AF-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606043'],
['AFS-25','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606043'],
['F-96-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606033'],
['F-384-100','https://ecat.fishersci.ca/(0abuk425jbufc445pnsjvo55)/Coupon.aspx?cid=3606044'],
['FC-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3609451'],
['FCS-25','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3609451'],
['100-SEAL-PLT','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3602024'],
['STR-SEAL-PLT','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3602024'],
['100-THIN-PLT','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606032'],
['STR-THIN-PLT','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606032'],
['RL-PLT-01','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606046'],
['SP-IDG-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606031'],
['SP-IDL-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606031'],
['SP-IDO-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606031'],
['SP-IDR-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606031'],
['SP-IDB-100','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606031'],
['SP-IDA-10','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606031'],
['SPS-IDA-10','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606031'],
['SP-2x8-50','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606042'],
['SPS-2x8-50','https://ecat.fishersci.ca/(cmzmie55gqty4an4nyk3cm45)/Coupon.aspx?cid=3606042'],
],
[
['excelcatno','www.dunnlab.de'],
['L-MW-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=7&zoom=100,0,840'],
['LS-MW-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=7&zoom=100,0,840'],
['EZP-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,70'],
['EZPS-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,70'],
['EZP-PRNA-10','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,400'],
['EZPS-PRNA-10','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,400'],
['ZAF-PE-50','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,600'],
['ZAFS-PE-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,600'],
['XP-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,800'],
['XPS-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=6&zoom=100,0,800'],
['100-THER-PLT','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,730'],
['STR-THER-PLT','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,730'],
['TS-2x8-50','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,730'],
['TSA-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,900'],
['TS-RT2-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,400'],
['TS-RT5-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,400'],
['TS-RT2RR-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,600'],
['TSS-RTQ-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=5&zoom=100,0,70'],
['BK-50','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=7&zoom=100,0,300'],
['BKS-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=7&zoom=100,0,300'],
['WT-50','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=7&zoom=100,0,600'],
['B-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=7&zoom=100,0,70'],
['BS-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=7&zoom=100,0,70'],
['PDL-5','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=8&zoom=100,0,70'],
['AF-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=4&zoom=100,0,70'],
['AFS-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=4&zoom=100,0,70'],
['F-96-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=4&zoom=100,0,400'],
['F-384-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=4&zoom=100,0,640'],
['FC-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=4&zoom=100,0,850'],
['FCS-25','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=4&zoom=100,0,850'],
['100-SEAL-PLT','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,70'],
['STR-SEAL-PLT','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,70'],
['100-THIN-PLT','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,70'],
['STR-THIN-PLT','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,70'],
['RL-PLT-01','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=8&zoom=100,0,70'],
['SP-IDG-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,450'],
['SP-IDL-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,450'],
['SP-IDO-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,450'],
['SP-IDR-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,450'],
['SP-IDB-100','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,450'],
['SP-IDA-10','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,450'],
['SPS-IDA-10','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,450'],
['SP-2x8-50','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,700'],
['SPS-2x8-50','http://www.dunnlab.de/pdf/excel_brochure.pdf#page=3&zoom=100,0,700'],
],
[
['excelcatno','www.degroot.co.il'],
['RSV-L175-S05','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=RSV-L175-S05 '],
['RSV-0175-S05','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=RSV-0175-S05'],
['RSV-L175-N10','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=RSV-L175-N10'],
['RSV-0175-N10','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=RSV-0175-N10'],
['L-MW-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=L-MW-100'],
['LS-MW-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=LS-MW-25'],
['EZP-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=EZP-100'],
['EZPS-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=EZPS-25'],
['EZP-PRNA-10','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=EZP-PRNA-10'],
['EZPS-PRNA-10','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=EZPS-PRNA-10'],
['ZAF-PE-50','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=ZAF-PE-50'],
['ZAFS-PE-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=ZAFS-PE-25'],
['XP-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=XP-100'],
['XPS-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=XPS-25'],
['100-THER-PLT','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=100-THER-PLT'],
['STR-THER-PLT','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=STR-THER-PLT'],
['TS-2x8-50','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=TS-2x8-50'],
['TSA-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=TSA-100'],
['TS-RT2-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=TS-RT2-100'],
['TS-RT5-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=TS-RT5-100'],
['TS-RT2RR-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=TS-RT2RR-100'],
['TSS-RTQ-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=TSS-RTQ-100'],
['BK-50','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=BK-50'],
['BKS-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=BKS-25'],
['WT-50','XX'],
['B-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=B-100'],
['BS-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=BS-25'],
['PDL-5','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=PDL-5'],
['AF-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=AF-100'],
['AFS-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=AFS-25'],
['F-96-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=F-96-100'],
['F-384-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=F-384-100'],
['FC-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=FC-100'],
['FCS-25','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=FCS-25'],
['100-SEAL-PLT','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=100-SEAL-PLT'],
['STR-SEAL-PLT','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=STR-SEAL-PLT'],
['100-THIN-PLT','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=100-THIN-PLT'],
['STR-THIN-PLT','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=STR-THIN-PLT'],
['RL-PLT-01','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=RL-PLT-01'],
['SP-IDG-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SP-IDG-100'],
['SP-IDL-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SP-IDL-100'],
['SP-IDO-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SP-IDO-100'],
['SP-IDR-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SP-IDR-100'],
['SP-IDB-100','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SP-IDB-100'],
['SP-IDA-10','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SP-IDA-10'],
['SPS-IDA-10','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SPS-IDA-10'],
['SP-2x8-50','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SP-2x8-50'],
['SPS-2x8-50','http://www.degroot.co.il/degroot/index.jsp?inc=product&id=SPS-2x8-50'],
],
[
['excelcatno','www.raylab.co.nz'],
['L-MW-100','XX'],
['LS-MW-25','XX'],
['EZP-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1545'],
['EZPS-25','XX'],
['EZP-PRNA-10','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1546'],
['EZPS-PRNA-10','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1564'],
['ZAF-PE-50','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1547'],
['ZAFS-PE-25','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1548'],
['XP-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1549'],
['XPS-25','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1550'],
['100-THER-PLT','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1538'],
['STR-THER-PLT','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1539'],
['TS-2x8-50','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1541'],
['TSA-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1540'],
['TS-RT2-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1542'],
['TS-RT5-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1543'],
['TS-RT2RR-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1544'],
['TSS-RTQ-100','XX'],
['BK-50','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1553'],
['BKS-25','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1554'],
['WT-50','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1567'],
['B-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1551'],
['BS-25','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1552'],
['PDL-5','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1556'],
['AF-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1531'],
['AFS-25','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1532'],
['F-96-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1533'],
['F-384-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1534'],
['FC-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1537'],
['FCS-25','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1536'],
['100-SEAL-PLT','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1525'],
['STR-SEAL-PLT','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1528'],
['100-THIN-PLT','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1526'],
['STR-THIN-PLT','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1527'],
['RL-PLT-01','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1555'],
['SP-IDG-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1557'],
['SP-IDL-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1558'],
['SP-IDO-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1559'],
['SP-IDR-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1560'],
['SP-IDB-100','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1561'],
['SP-IDA-10','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1565'],
['SPS-IDA-10','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1562'],
['SP-2x8-50','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1529'],
['SPS-2x8-50','http://www.raylab.co.nz/catalog.asp?section=product&groupID=46&productID=1530'],
]
]

function recordBuy(distrib,item,loc) {
    //alert("got here1");
    top.frames["prodframe"].location = "cgi-bin/prodouts.cgi?refurl="+distrib+"&"+item+"&"+loc;

}

function recordItem(item) {
    //alert("got here2");
    top.frames["itemframe"].location = "cgi-bin/itemouts.cgi?refurl="+item;

}


function recordEvent(distrib,item) {
    //alert("got here1");
    top.frames["eventframe"].location = "cgi-bin/visitrecord.cgi?visitid="+visitorID+"&&&&&&BUY&"+item+"&"+safeDistribName(distrib)+"&&&&";

}

function displayDutscher(num,ref,win){
    win.document.open();
    win.document.writeln("<html><head><title>Cherche</title></head><body bgcolor='#e6eca0'>");
    win.document.writeln("<p>Pour trouver Excel no. ",num,"</p>");
    win.document.writeln("<h2>chez Dutscher</h2>");
    win.document.writeln("<p>recherche par mots cl&eacute;s:</p>");
    win.document.writeln("<p>r&eacute;f&eacute;rence = <b>",ref,"</b></p>");
    win.document.writeln("</body></html>");
    win.document.close();
}


function displayUnDutscher(num,win){
    win.document.open();
    win.document.writeln("<html><head><title>Non valable</title></head><body bgcolor='#e6eca0'>");
    win.document.writeln("<p>Excel no. ",num,"</p>");
    win.document.writeln("<h2>chez Dutscher</h2>");
    win.document.writeln("<p>Ce produit, ce n&#39;est pas couramment valable dans le website Dutscher.</p>");
    win.document.writeln("</body></html>");
    win.document.close();
}


function dutscherSearch(num,ref){
    var size = "width=300, height=200, left=200, top=220";
    if(ref == "UNKNOWN") {
        advice=window.open("","dutscher", size);
        displayUnDutscher(num,advice);
    }
    else {
        advice=window.open("","dutscher", size);
        displayDutscher(num,ref,advice);
    }
}


function unListed(num,win){
    win.document.open();
    win.document.writeln("<html><head><title>Non valable</title></head><body bgcolor='#e6eca0'>");
    win.document.writeln("<p>Excel no. ",num,"</p>");
    win.document.writeln("<h2>chez Dutscher</h2>");
    win.document.writeln("<p>Ce produit, ce n&#39;est pas couramment valable dans le website Dutscher.</p>");
    win.document.writeln("</body></html>");
    win.document.close();
}


function notListed(num){
    var size = "width=300, height=200, left=200, top=220";
    unlisted=window.open("","nolist", size);
    with (unlisted.document){
        open();
        writeln("<html><head><title>Product Not Listed</title></head><body bgcolor='#bee8c7'>");
        writeln("<p>The Excel Scientific product ",num," is not currently offered on this distributor&#39;s website.</p>");
        writeln("</body></html>");
        close();
        }
}


function notInRegion(num){
    var size = "width=300, height=200, left=200, top=220";
    unregion=window.open("","geographic", size);
    with (unregion.document){
        open();
        writeln("<html><head><title>Product Not Listed</title></head><body bgcolor='#e5c2f5'>");
        writeln("<p>The Excel Scientific product ",num," is not available in this geographic region.</p>");
        writeln("</body></html>");
        close();
        }
}


function buyItem(catno){
    var itemno = catno;
    if(-1 == document.cookie.indexOf("prefdist=")) {
        focusSwitch = true;
        productSelection = itemno;
        window.open("distribchoice.html","choose");
    }
    else{
        //alert("buy " +itemno);
        focusSwitch = false;
        productSelection = "";
        var base = findCookieValue("prefdist=");
        //alert("buy0 " +itemno);
        var matrix = new Array();
        var pattern0 = new RegExp(base);
        //alert("buy1 " +itemno);
        for(var i=0; i<linklookup.length; i++){
            matrix = linklookup[i];
            var sitelink = matrix[0][1];
            if(pattern0.test(sitelink)) {
                var correspondents = new Array;
                //alert("buy2 " +itemno);
                for(var j=1; j<matrix.length; j++){
                    correspondents = matrix[j];
                    if(catno == correspondents[0]) {
                        var prodlink = correspondents[1];
                        //alert("buy3 " +itemno);
                        if(prodlink == "XX") var noproduct = window.open("http://"+sitelink, "distrib");
                        else var showproduct = window.open(prodlink, "distrib");
                        //alert("buy4 " +itemno);
                        var dutscher = new RegExp("dutscher");
                        //alert("buy5 " +itemno);
                        if(dutscher.test(sitelink)) {
                            //alert("buy6 " +itemno);
                            if(correspondents[2]) {
                                dutscherSearch(correspondents[0],correspondents[2]);
                                //alert("buy7 " +itemno);
                                itemno += "/Ref.";
                                //alert("buy8 " +itemno);
                                itemno += correspondents[2];
                            //alert("buy9 " +itemno);
                            }
                        }
                    }
                }
                if(noproduct) notListed(catno);
                //alert("The Excel Scientific Product " + catno + " is Not Currently Listed on This Distributor's Website");
                if(!showproduct && !noproduct) {
                    window.open("http://"+sitelink, "distrib");
                    //alert("The Excel Scientific Product " + catno + " is Not Available in This Geographic Region");
                    notInRegion(catno);
                }
            }
        }
        recordBuy(base,itemno,findCookieValue("prefloc="));
        recordItem(catno);
        recordEvent(base,catno);
    }
    //alert("buy10 " +itemno);
    return false;
}

function buyIt2(catno){
    var itemno = catno;
    if(-1 == document.cookie.indexOf("prefdist=")) {
        focusSwitch = true;
        productSelection = itemno;
        window.open("distribchoice.html","choose");
    }
    else{
        //alert("buy " +itemno);
        focusSwitch = false;
        productSelection = "";
        var base = findCookieValue("prefdist=");
        //alert("buy0 " +itemno);
        var matrix = new Array();
        var pattern0 = new RegExp(base);
        //alert("buy1 " +itemno);
        for(var i=0; i<linklookup.length; i++){
            matrix = linklookup[i];
            var sitelink = matrix[0][1];
            if(pattern0.test(sitelink)) {
                var correspondents = new Array;
                //alert("buy2 " +itemno);
                for(var j=1; j<matrix.length; j++){
                    correspondents = matrix[j];
                    if(catno == correspondents[0]) {
                        var prodlink = correspondents[1];
                        //alert("buy3 " +itemno);
                        if(prodlink == "XX") var noproduct = window.open("http://"+sitelink, "distrib");
                        else var showproduct = window.open(prodlink, "distrib");
                        //alert("buy4 " +itemno);
                        var dutscher = new RegExp("dutscher");
                        //alert("buy5 " +itemno);
                        if(dutscher.test(sitelink)) {
                            //alert("buy6 " +itemno);
                            if(correspondents[2]) {
                                dutscherSearch(correspondents[0],correspondents[2]);
                                //alert("buy7 " +itemno);
                                itemno += "/Ref.";
                                //alert("buy8 " +itemno);
                                itemno += correspondents[2];
                            //alert("buy9 " +itemno);
                            }
                        }
                    }
                }
                if(noproduct) notListed(catno);
                //alert("The Excel Scientific Product " + catno + " is Not Currently Listed on This Distributor's Website");
                if(!showproduct && !noproduct) {
                    window.open("http://"+sitelink, "distrib");
                    //alert("The Excel Scientific Product " + catno + " is Not Available in This Geographic Region");
                    notInRegion(catno);
                }
            }
        }
    }
    //alert("buy10 " +itemno);
    return false;
}

