//=================================================
// DeepMetrix StatScript (version 94)
// Copyright 2001-2005 (c) DeepMetrix Corporation
//-------------------------------------------------
//
// General Instructions:
//
// -  This script should be located in the root
//    directory for your web site.
//
// -  This script should be included on every web
//    page you wish to track.
//
// -  This script should be included from within
//    the head section of the web page. Inclusion
//    of the script on a web page will automatically 
//    record a statistic for the web page.
//
//
// TRACKING A PAGE VIEW (see PRODUCT VIEW below)
//---------------------------------------------------
//
//  Include dmstatscript.js on your web page as 
//  follows (be sure to use two script blocks):
//
//   <script language="javascript" type="text/javascript" src="/dmstatscript.js"></script>
//   <script>
//      DMPage();
//   </script>
//
//
// TRACKING A PRODUCT VIEW
//---------------------------------------------------
//
//  Include dmstatscript.js on your web page as 
//  follows (be sure to use two script blocks):
//
//   <script language="javascript" type="text/javascript" src="/dmstatscript.js"></script>
//   <script>
//      DMProduct( ProductID, Catalog, ProductName, CatalogName );
//   </script>
// 
//   NOTE: When adding this script to your pages be sure to
//         provide quoted values for ProductID, Catalog, etc.
//         See the DMProduct function below.
//
//
// TRACKING A CART
//---------------------------------------------------
//
//  Include dmstatscript.js on your web page as 
//  follows (be sure to use two script blocks):
//
//   <script language="javascript" type="text/javascript" src="/dmstatscript.js"></script>
//   <script>
//      DMCartItem( prodID, prodQuantity, totalPrice );
//      DMCartItem( prodID, prodQuantity, totalPrice );
//      DMCartItem( prodID, prodQuantity, totalPrice );
//      DMCartUpdate();
//   </script>
//
//   NOTE: When adding this script to your cart application 
//         be sure to provide quoted values for ProdID, etc.
//         See the DMCartItem function below.
//
//
//-------------------------------------------------
// Please visit www.deepmetrix.com for details.
//=================================================


//=================================================
// Global Variables and Switches
//
// These variable may be altered to change the 
// behavior of the StatScript to better suit your
// web site. Default settings will work in nearly
// all situations.
//=================================================

// Optional domain for cookie required in cases where
// multiple domain prefixes are used.

var DMdomain = ""; 

// File extensions required for a file to be considered
// a download. This variable is used by the Link Tracking
// feature. Only external links (to outside web sites)
// and Downloads (generally media files with extensions 
// matching those below) are recorded.
// Note: This list is Space (' ') separated.

var DMDownloadExtensions = ".arc .arj .asf .asx .avi .bin .doc .exe .gz .gzip .hqx .mov .movie .mp2 .mp3 .mpeg .mpg .msi .pdf .ppt .qt .ra .ram .sea .sit .tar .z .tgz .wav .wmv .zip .msp .rar .wpd .qtm";

// The location where statistical transactions are sent
// in LiveStats.NET and LiveStats.BIZ hosted this is
//
//        //collector.deepmetrix.com/dm.gif?
//
// for LiveStats.NET installable this will likely be
// your web server, or a designated server.
//
//        //www.yourserver.com/dm.gif?

var DMsendTo = "//collector.deepmetrix.com/dm.gif?";

//=================================================
// Global Functions
//
// The JavaScript functions listed in this section 
// can be called between <script> </script> tags
// anywhere on your web pages.
//=================================================


//-------------------------------------------------
// Record an Event
//    Name  = Name of Event (Display Name)
//    Value = ####.## format, monetary or points value 
//  
// Call this function BEFORE calling DMPage. This 
// allows you to set an event with page statistics
//
// Value is an optional parameter and is only used 
// for Valued Goals
//-------------------------------------------------

function DMEvent( Name, Value )
{

}

//-------------------------------------------------
// Record a PAGE VIEW
//-------------------------------------------------

function DMPage( URLOverride )
{
  
}

//-------------------------------------------------
// Record a PRODUCT VIEW
//
// Set Product and Catalog (ProductName and 
//     CatalogName are optional parameters)
//-------------------------------------------------

function DMProduct( ProductCode, Catalog, ProductName, CatalogName )
{

}


//-------------------------------------------------
// Track CRM values from a Form
//-------------------------------------------------

function DMCRMForm(formObj, mappings, OnSubmit )
{
  
}

//-------------------------------------------------
// Track ad hoc CRM values
//-------------------------------------------------

function DMCRMValue( Param, Value )
{
 
}

//-------------------------------------------------
// Call this for each item in a shopping cart
//-------------------------------------------------

function DMCartItem(prodID, prodQuantity, totalPrice)
{
 
}


//-------------------------------------------------
// Call this to send LiveStats the updated cart info.
//      - Call after all calls to DMCartItem have 
//        been made.
//-------------------------------------------------

function DMCartUpdate()
{
  
}


//-------------------------------------------------
// Enables Link Tracking
//      - Call at end of page or on Body onLoad
//-------------------------------------------------

function DMEnableLinkTracking()
{

}


//=================================================
// INTERNAL FUNCTIONS - DO NOT EDIT. DO NOT CALL.
// These functions are 'helpers' called by the 
// functions listed above.
//=================================================

function __DMGETLINKEDID()
{

}

function __DMXIMG( URL, onStat )
{

}

function __DMHOLD( onStat )
{

};

function __DMIDGEN()
{

};

function __DMGETID()
{
}

function __DMINTERCEPT( link )
{

}

// Track a page (set DMAltURL to record a different page URL than the one in window.location)
function __DMStat( urlAppend )
{

}