// JavaScript Document


// keep track of clicks on external links.
// this function will call a php script which records the event into the database

function TrackExternalLinkClick(href){
	var req = new XMLHttpRequest();
	req.open("GET","http://www.mywiicenter.com/trackexternallinkclick.php?href=" + encodeURIComponent(href),true);
	req.send(null);
}
