function goMain() {
//*******************************************************************************
//	 Go to home page after a specific interval (eg. 20 seconds)
//*******************************************************************************

	var timer = 20000;
	setTimeout ("goHome()", timer);
}

function goHome() {
   	location.href = '../index.html';
}
       
