/** Function for "home" links,
 ** keeping affiliate code, if any
 */

function goHome(){
	tempLocation = window.top.location.toString();
	tempL = tempLocation.substring(0,tempLocation.lastIndexOf('/'));
	window.top.location=tempL;
}
