//used for the pop-up overlay
var appleOverlayObject;
    function popup(selected_web_id) {
        var strURL;
       	api = $("#popup").html('<img class="progressAnim" src="/BMT/BMT_globalContent/popup/images/big-ajax-loader.gif"/>');
        appleOverlayObject = $("#popupContainer").overlay({ expose: { color: '#FFFFFF', loadSpeed: 200, opacity: 0.5 }, api: true, effect: 'apple' });
        appleOverlayObject.load();
        //strURL = "/BMT/templates/corporate/careers_includes/bespokeContent.asp?BMTredirected_web_id=" + selected_web_id;
		 strURL = "/BMT/templates/corporate/careers_includes/bespokeContent.asp?company_web_id=" + selected_web_id;
		$.ajax({type: "GET", url: strURL, success: function(html) {
		api = $("#popup").html(html);
		}
       	});
        return (false);
    }