﻿function trackDownloadIE() {
	
	var link = $('#download_ie_link').attr('href');
    setTimeout( 'document.location = "' + link + '"', 500 );
}

$(function() {
    $( '#download_ie_link, #download_ie_link2' ).bind( 'click', trackDownloadIE );
});

function sendDownloadTrack(){
	
	pageTracker._trackPageview(location.pathname + '/IE8_dowload_pressed_track');
	
	var leadNumber = Math.round((new Date().getTime() * Math.random()));
	var protocol = window.location.protocol;
	if (protocol.indexOf(":")) {
		protocol = protocol.substring(0,protocol.indexOf(":"));
	}
	$( '#track_div' ).html("<img src=\""+protocol+"://tbl.tradedoubler.com/report?organization=1346251&event=197010&leadNumber=" + leadNumber + "\" border=0>");
}