    /**** OLD OAS Code
    
    //OAS Integration File

    //configuration
    OAS_url = 'http://oascentral.bkfk.com/RealMedia/ads/';

    //Maggie changes: 03-16-2009
	//OAS_sitepage = window.location.hostname + window.location.pathname;
	OAS_sitepage = "www.bkfk.com" + window.location.pathname;

    OAS_listpos = 'Bottom,Left';

    OAS_query = window.location.search;

    OAS_target = '_top';
    //end of configuration

    OAS_version = 10;

    OAS_rn = '001234567890'; OAS_rns = '1234567890';
    OAS_rn = new String (Math.random()); OAS_rns = OAS_rn.substring (2, 11);

    OAS_version = 11;

    if ((navigator.userAgent.indexOf('Mozilla/3') != -1) || (navigator.userAgent.indexOf('Mozilla/4.0 WebTV') != -1))
        OAS_version = 10;

    if (OAS_version >= 11)
        document.write('<SCR' + 'IPT LANGUAGE=JavaScript1.1 SRC="' + OAS_url + 'adstream_mjx.ads/' + OAS_sitepage + '/1' + OAS_rns + '@' + OAS_listpos + OAS_query + '"><\/SCRIPT>');

    document.write('');

    function OAS_NORMAL(pos) {
        document.write('<A HREF="' + OAS_url + 'click_nx.ads/' + OAS_sitepage + '/1' + OAS_rns + '@' + OAS_listpos + '!' + pos + OAS_query + '" TARGET=' + OAS_target + '>');
        document.write('<IMG SRC="' + OAS_url + 'adstream_nx.ads/' + OAS_sitepage + '/1' + OAS_rns + '@' + OAS_listpos + '!' + pos + OAS_query + '" BORDER=0></A>');
    }
    
    *************/

    function OAS_AD(pos) {
	document.write("<div id=adDiv_" + pos +">Advertisment</div>");
	
	handleSuccess = function(response, options) {
		//alert(response);
		adData=Ext.util.JSON.decode(response.responseText);
		document.getElementById('adDiv_' + adData.pos).innerHTML=adData.data;
        };

        handleFailure = function(response, options) {
            alert('Dynamic load script: [' + component + '] failed!');
        };
        
        var zone;
        if (pos=="Left")
        {
       		zone=1
        }else{
        	zone=2
        }
	
        Ext.Ajax.request({
            url: "/ads/abm.asp",
            params : {zone:zone, pos:pos},
            method: 'GET',
            success: handleSuccess,
            failure: handleFailure,
            disableCaching : false
        });
	/*
        if (OAS_version >= 11)
        OAS_RICH(pos);
          else
        OAS_NORMAL(pos);
        */
    }
    
