function makePixelRequest(pixelURL,pixelType){
    if(pixelType == "javascript")
    {
      document.write('<script src="'+pixelURL+'" type="text\/javascript"><\/script>');
    }
    else
    {
      var img = new Image();
      img.src = pixelURL;
    }
}