//used for the pop-up overlay
var appleOverlayObject;
    // this function is used by the careers site
	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);
    }
	
	// this function is used for sending Focus Links
	function sendlink(thisLink) {
        var strURL;
       	//api = $("#popup").html('<img class="progressAnim" src="/BMT/BMT_globalContent/popup/images/big-ajax-loader.gif"/>');
		api = $("#popup").html('<iframe src="http://www.bmt.org/sendlink/includes/content.asp?link='  + thisLink + '" frameborder="0" scrolling="auto" width="100%" height="450px"></iframe>');		
		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;
		 //strURL = "http://www.bmt.org/sendlink/includes/content.asp";
		 /*$.ajax({ type: "GET", url: strURL, success: function(html) {
		     api = $("#popup").html(html);
		     //alert(html);		 
		 }
		 });
		*/
        return (false);
    }
