/* Global Variables */
var TOTAL_PAGES = 2;
var aboutUs = new Array(TOTAL_PAGES);

aboutUs[0] = "/history.html";
aboutUs[1] = "/history2.html";



function showHistory(page)
{
   var locn = self.location;

   locn.href = aboutUs[(page - 1)];
}