//This function calls a function within exitsurvey.js to set the 'leaving' boolean to false so that the exit survey prompt doesn't pop up for all links that are within the Design @ IBM website

		for (i = 9; i <= document.links.length-7; i++)			//first 9 links are from the header and last 6 links are from footer
						{
					
							document.links[i].onclick = (function(old) {
							return function() {
								if (old) old.call(this, arguments);
								setfalse();
								}
								})(document.links[i].onclick);
							
						}								
