/* ------------------     NEW FUNCTION FOR NORMAL LINKS    -------------------- */

function normLink(href, posi){
	var winWidth;
	var winHeight;
	var targetInfo;

	if(document.body['offsetWidth']){
		winWidth = document.body.offsetWidth;
		winHeight = document.body.offsetHeight;
		targetInfo ='frame='+top.document.URL+'&referrer='+document.referrer+'&fromPage='+document.location+'&toPage='+href+'&position='+posi+'&wx='+winWidth+'&wy='+winHeight;
		document.logImage.src=logfileServer+'normLink.gif?'+targetInfo;
	}else if(document.body['offsetWidth']){
		winWidth = document.body.clientWidth;
		winHeight = document.body.clientHeight;
		targetInfo ='frame='+top.document.URL+'&referrer='+document.referrer+'&fromPage='+document.location+'&toPage='+href+'&position='+posi+'&wx='+winWidth+'&wy='+winHeight;
		document.logImage.src=logfileServer+'normLink.gif?'+targetInfo;
	}
}



/* ------------------     NEW FUNCTION FOR IMAGE CLICKS    ---------------------- */

function imgClick(src){
	var winWidth;
	var winHeight;
	var targetInfo;

	if(document.body['offsetWidth']){
		winWidth = document.body.offsetWidth;
		winHeight = document.body.offsetHeight;
		targetInfo ='frame='+top.document.URL+'&referrer='+document.referrer+'&fromPage='+document.location+'&wx='+winWidth+'&wy='+winHeight+'&imgSrc='+src;
		document.logImage.src=logfileServer+'imgClick.gif?'+targetInfo;
	}else if(document.body['offsetWidth']){
		winWidth = document.body.clientWidth;
		winHeight = document.body.clientHeight;
		targetInfo ='frame='+top.document.URL+'&referrer='+document.referrer+'&fromPage='+document.location+'&wx='+winWidth+'&wy='+winHeight+'&imgSrc='+src;
		document.logImage.src=logfileServer+'imgClick.gif?'+targetInfo;
	}
}