<!--
// Modified 08.26.1999
//
// icontact Image Calls
// The pnotify image call will update the surfer's current page value as
// seen by the NetRep. The uppage image call will update the surfer's
// current URL value.  This is used by the server as the value for the
// <frame src> attribute in the conversation frameset (fs_*.sct)

// Get current URL and URL Encode it.
var thisPage = escape(document.URL);

// Get current page's title and URL Encode it.
var thisTitle = escape(document.title);

// Generate psuedo-random number to prevent the images from being called
// from the browser's cache.
var randomNumber = 1000000 + Math.round(Math.random()*9999999);

// pnotify image call
document.write("<img src='http://icontact.jescdrom.com/bin/icx.dll?pnotify?" + thisTitle + "&" + randomNumber + "' height='1' width='1'>");

// uppage image call
document.write("<img src='http://icontact.jescdrom.com/bin/icx.dll?uppage?" + thisPage + "&" + randomNumber + "' height='1' width='1'>");

//-->