
function loadFrame(iframeName, url) {

var PageName = String(window.frames[iframeName].location);

if (PageName.search(url)!= -1){

	window.frames[iframeName].location = "frontstuff/front.html";
	} 
else {
	window.frames[iframeName].location = url;
}
}

function MilesTrav() {
document.write(milesTrav);
}


function DaysTrav() {
Today = new Date();
TodayYear = Today.getYear();
if (TodayYear < 2000) TodayYear += 1900;
DateToFind = new Date("August 21, 2007");
difference = Today.getTime() - DateToFind.getTime();
difference = Math.floor(difference / (1000 * 60 * 60 * 24)) + 1;
note = "";
document.write("day "+difference);
}

