var Mint = new Object();
Mint.save = function() 
{
	var now		= new Date();
	var debug	= false; // this is set by php 
	if (window.location.hash == '#Mint:Debug') { debug = true; };
	var path	= 'http://www.venukb.com/mint/?record&key=315045634d6c6a426d7a67343738373242683930353141';
	path 		= path.replace(/^https?:/, window.location.protocol);
	
	// Loop through the different plug-ins to assemble the query string
	for (var developer in this) 
	{
		for (var plugin in this[developer]) 
		{
			if (this[developer][plugin] && this[developer][plugin].onsave) 
			{
				path += this[developer][plugin].onsave();
			};
		};
	};
	// Slap the current time on there to prevent caching on subsequent page views in a few browsers
	path += '&'+now.getTime();
	
	// Redirect to the debug page
	if (debug) { window.open(path+'&debug&errors', 'MintLiveDebug'+now.getTime()); return; };
	
	var ie = /*@cc_on!@*/0;
	if (!ie && document.getElementsByTagName && (document.createElementNS || document.createElement))
	{
		var tag = (document.createElementNS) ? document.createElementNS('http://www.w3.org/1999/xhtml', 'script') : document.createElement('script');
		tag.type = 'text/javascript';
		tag.src = path + '&serve_js';
		document.getElementsByTagName('head')[0].appendChild(tag);
	}
	else if (document.write)
	{
		document.write('<' + 'script type="text/javascript" src="' + path + '&amp;serve_js"><' + '/script>');
	};
};
if (!Mint.SI) { Mint.SI = new Object(); }
Mint.SI.Referrer = 
{
	onsave	: function() 
	{
		var encoded = 0;
		if (typeof Mint_SI_DocumentTitle == 'undefined') { Mint_SI_DocumentTitle = document.title; }
		else { encoded = 1; };
		var referer		= (window.decodeURI)?window.decodeURI(document.referrer):document.referrer;
		var resource	= (window.decodeURI)?window.decodeURI(document.URL):document.URL;
		return '&referer=' + escape(referer) + '&resource=' + escape(resource) + '&resource_title=' + escape(Mint_SI_DocumentTitle) + '&resource_title_encoded=' + encoded;
	}
};



if (!Mint.SI) { Mint.SI = new Object(); }
Mint.SI.RealEstate = 
{
	onsave	: function() 
	{
		var width = -1;
		var height = -1;
		
		if (typeof window.innerWidth != "undefined")
		{
			width = window.innerWidth;
			height = window.innerHeight;
		}
		else if (document.documentElement && typeof document.documentElement.offsetWidth != "undefined" && document.documentElement.offsetWidth != 0)
		{
			width = document.documentElement.offsetWidth;
			height = document.documentElement.offsetHeight;
		}
		else if (document.body && typeof document.body.offsetWidth != "undefined")
		{
			width = d.body.offsetWidth;
			height = d.body.offsetHeight;
		};
		
		return '&window_width=' + width + '&window_height=' + height;
	}
};


// incredibly funky onload add-event scripting, for all browsers

if(typeof window.addEventListener != 'undefined')
    window.addEventListener('load', adsense_init, false);
else if(typeof document.addEventListener != 'undefined')
    document.addEventListener('load', adsense_init, false);
else if(typeof window.attachEvent != 'undefined')
    window.attachEvent('onload', adsense_init);
else
{
    if(typeof window.onload == 'function')
    {
	var existing = onload;

	window.onload = function()
	{
	    existing();
	    adsense_init();
	};
    }
    else
    {
         window.onload = adsense_init;
    }
}

//for firefox
var px;
var py;
var adUnit = "";
var browser = "";
var adunitsize = "";

function getMouse(e) {
        px=e.pageX;
        py=e.clientY;
}

function findY(obj) {
        var y = 0;
        while (obj) {
                y += obj.offsetTop;
                obj = obj.offsetParent;
        }
        return(y);
}
function findX(obj) {
        var x = 0;
        while (obj) {
                x += obj.offsetLeft;
                obj = obj.offsetParent;
        }
        return(x);
}


function doPageExit(e) {
    if (document.getElementsByTagName) 
    { 
        ad = document.getElementsByTagName("iframe");
    } 
    else if (document.body.all)
    { 
        ad = document.body.all.tags("IFRAME"); 
    } 
    else 
    {
        ad = Array(); 
    } 

    for (i=0; i < ad.length; i++) {
            var adLeft = findX(ad[i]);
            var adTop = findY(ad[i]);
            var inFrameX = (px > (adLeft - 10) && px < (parseInt(adLeft)+parseInt(ad[i].width)+10));
            //var inFrameY = (py > (adTop - 10) && py < (parseInt(adTop)+parseInt(ad[i].height)+10));
            var inFrameY = (py > 0 && py < (ad[i].height + 10));
                  
            //if (inFrameX) {
            if (inFrameX && inFrameY) {
                adUnit = i+1;
                browser = navigator.appName;
                adunitsize = ad[i].width + "x" + ad[i].height;
                trackAdsense();
            }
    }

/*
        for (i=0; i < ad.length; i++) {
                var adLeft = findX(ad[i]);
                var adTop = findY(ad[i]);
                var inFrameX = (px > (adLeft - 10) && px < (parseInt(adLeft) + parseInt(ad[i].width) + 15));
                var inFrameY = (py > (adTop - 10) && py < (parseInt(adTop) + parseInt(ad[i].height) + 10));

                if (inFrameY && inFrameX) {
                        adUnit = i+1;
                        browser = "Firefox";
                        adunitsize = ad[i].width + "x" + ad[i].height;
                        trackAdsense();

                }
        }
*/
}
//end for firefox

function as_addEvent(elm, evType, fn, useCapture) {
    if (elm.addEventListener) {
        elm.addEventListener(evType, fn, useCapture);
        return true;
    }
    else if (elm.attachEvent) {
        var r = elm.attachEvent('on' + evType, fn);
        return r;
    }
    else {
        elm['on' + evType] = fn;
    }
}


function as_get_domain(str) {
        if (str.substr(0,7) == 'http://') str = str.substr(7);
        if (str.substr(0,8) == 'https://') str = str.substr(8);
        str = str.substr(0,str.indexOf('/'));
        str = str.replace('www.','');
        return str;
}


function adsense_init () {
    var browserName = navigator.appName;
    if (document.all){ //ie
        if (document.getElementsByTagName) 
        { 
            el = document.getElementsByTagName("iframe");
        } 
        else if (document.body.all)
        { 
            el = document.body.all.tags("IFRAME"); 
        } 
        else 
        {
            el = Array(); 
        } 
	  
        for(var i = 0; i < el.length; i++) 
        {
            if (as_get_domain(el[i].src).indexOf('googlesyndication.com') > -1)
            {
                adUnit = i+1;
                browser = browserName;
                adunitsize = el[i].width + "x" + el[i].height;
                as_addEvent(el[i],"focus",trackAdsense);
            }
        }
    } else { //firefox and mozilla
            window.addEventListener('beforeunload', doPageExit, false);
            window.addEventListener('mousemove', getMouse, true);
    }
}

function esc_ads (str) {
    if (typeof encodeURIComponent == 'undefined')
        return escape(str);
    else
        return encodeURIComponent(str);
}


function trackAdsense() {
    var path = '/mint/pepper/jimrutherford/adsense/data.php';

    if (document.all) { //ie
        if (window.status.indexOf('go to') == 0) 
        { 
	    path += "?from_title=adsense_ads_"+esc_ads(document.title);
        } 
        else if (window.status.indexOf('View ads about') == 0) 
        { 
	    path += "?from_title=adsense_links_"+esc_ads(document.title);
        } 
    }
    else // firefox and mozilla
    {
         path += "?from_title=adsense_"+esc_ads(document.title);
    }
    path += "&from="+esc_ads(self.location);
    path += "&unit="+esc_ads(adUnit);
    path += "&browser="+esc_ads(browser);
    path += "&adunitsize="+esc_ads(adunitsize);

    //window.open(path,'path','width=1024,height=68')
    var data = false;
    /*@cc_on @*/
    /*@if (@_jscript_version >= 5)
    try { data = new ActiveXObject("Msxml2.XMLHTTP"); }
    catch (e) { try { data = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { data = false; } }
    @end @*/
    if (!data && typeof XMLHttpRequest!='undefined') data = new XMLHttpRequest();
    if (data) data.open("GET", path, false); 
    data.send(null);
    //alert(path);
}
if (!Mint.SI) { Mint.SI = new Object(); }
Mint.SI.UserAgent007 = 
{
	versionHigh			: 16,
	flashVersion		: 0,
	resolution			: '0x0',
	detectFlashVersion	: function () 
	{
		var ua = navigator.userAgent.toLowerCase();
		if (navigator.plugins && navigator.plugins.length) 
		{
			var p = navigator.plugins['Shockwave Flash'];
			if (typeof p == 'object') 
			{
				for (var i=this.versionHigh; i>=3; i--) 
				{
					if (p.description && p.description.indexOf(' ' + i + '.') != -1) { this.flashVersion = i; break; }
				}
			}
		}
		else if (ua.indexOf("msie") != -1 && ua.indexOf("win")!=-1 && parseInt(navigator.appVersion) >= 4 && ua.indexOf("16bit")==-1) 
		{
			var vb = '<scr' + 'ipt language="VBScript"\> \nOn Error Resume Next \nDim obFlash \nFor i = ' + this.versionHigh + ' To 3 Step -1 \n   Set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash." & i) \n   If IsObject(obFlash) Then \n      Mint.SI.UserAgent007.flashVersion = i \n      Exit For \n   End If \nNext \n<'+'/scr' + 'ipt\> \n';
			document.write(vb);
		}
		else if (ua.indexOf("webtv/2.5") != -1) this.flashVersion = 3;
		else if (ua.indexOf("webtv") != -1) this.flashVersion = 2;
		return this.flashVersion;
	},
	onsave				: function() 
	{
		if (this.flashVersion == this.versionHigh) { this.flashVersion = 0; };
		this.resolution = screen.width+'x'+screen.height;
		return '&resolution=' + this.resolution + '&flash_version=' + this.flashVersion;
	}
};
Mint.SI.UserAgent007.detectFlashVersion();




function Mint_SI_addEvent( obj, type, fn )
{
	if (obj.addEventListener)
	{
		obj.addEventListener( type, fn, false );
	}
	else if (obj.attachEvent)
	{
		obj["e"+type+fn] = fn;
		obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
		obj.attachEvent( "on"+type, obj[type+fn] );
	};
};
function Mint_SI_IO()
{
	if (document.getElementsByTagName)
	{
		var links = document.getElementsByTagName('a');
		for (var i=0; i<links.length; i++)
		{
			var link = links[i];
			if (link.href && !Mint_SI_IO_isLocal(link.href)  && link.href.indexOf('javascript:')==-1)
			{
				Mint_SI_addEvent(links[i], 'mousedown', Mint_SI_IO_save);
			};
		};
	};
};
function Mint_SI_IO_isLocal(url)
{
	return /^([^:]+):\/\/([a-z0-9]+[\._-])*(venukb\.com)/i.test(url);
};
function Mint_SI_IO_save()
{
	var now		= new Date();
	var then	= now.getTime() + 300;
	var path	= 'http://www.venukb.com/mint/pepper/shauninman/outbound/click.php?'+now.getTime();
	path 		= path.replace(/^https?:/, window.location.protocol);
	
	var encoded = 0;
	if (typeof Mint_SI_DocumentTitle == 'undefined') { Mint_SI_DocumentTitle = document.title; }
	else { encoded = 1; };
	var to			= (window.decodeURI)?window.decodeURI(this.href):this.href;
	var from		= (window.decodeURI)?window.decodeURI(document.URL):document.URL;
	var to_title 	= (this.title && this.title != '')?this.title:this.innerHTML;
	
	path += '&to=' + escape(to) + '&to_title=' + escape(to_title) + '&from=' + escape(from) + '&from_title=' + escape(Mint_SI_DocumentTitle) + '&from_title_encoded=' + encoded;
	var img = new Image();
	img.src = path;
	
	while (now.getTime() < then) { now = new Date(); };
};
Mint_SI_addEvent(window, 'load', Mint_SI_IO);



Mint.save();                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
