//-------------------New Function  linkstat()---------

function linkstat(link_url) {

// this function triggers logging statistics for exit links from the site

if(document.images){ 

	(new Image()).src="/linkoutlog.php?link="+link_url;

	 }

return true;

} 

function linkin(){
// this function triggers logging statistics for entry links to a page
if(document.images){ 
	// now create timestamp
	docloc = document.location;
	docref = document.referrer;
	(new Image()).src="/linkoutlog.php?docloc="+docloc+"&docref="+docref;

	 }

return true;
}
//EOF
