function clickTracker(page,action) {
	try {
	    if (page==null) {
			temp = new String(window.location);
			temp2 = temp.split("/");
			page = temp2[temp2.length-1];
		}
		var clickImg = new Image(1,1);
		var url = '/GifTracker.qst?CLICK='+page+'|'+action;
		clickImg.src=url; 
	}
	catch (e) {
		window.status=e;
	}
	return false;
}