// This file is stored in http://asap.ap.org/data/scripts/asap_tracking.js 
// It is just in CVS in the event that it gets blown away and we need to restore it on the NetApp. 
 
// This script generates the tracking pixels for Omniture 
// It depends on the following js variables to be defined: 
//     var asap_site; 
//     var asap_url; 
//     var asap_date; 
//     var asap_random; 
//     var asap_referrer; 
//  var asap_slug; 
//  var asap_section; 
  
function asap_tracking_pixel() { 
     document.write('<img src="http://apasaporg.112.2o7.net/b/ss/apasaporg/1/G-6-PD-R/' + asap_random +'?ch=' + asap_site + '&r=' + asap_referrer + '&g=' + asap_url + '&pageName=' + asap_url + '&c1=' + asap_slug + '&c2=' + asap_section + '" />'); 
     document.write('<img src="/static/images/default/blank.gif?ch=' + asap_site + '&r=' + asap_referrer + '&g=' + asap_url + '&pageName=' + asap_url + '&c1=' + asap_slug + '&c2=' + asap_section + '" style="width: 0px; height: 0px" />'); 
 } 
