// Handle the click on one of the frame buttons
function loadLink() {
	var loc = window.location.href.split("#");
	if (loc[1] != null) {
		buttonClick(loc[1]);
	}
}
function buttonClick(pageName) {
	var content = document.getElementById('contentsContainer');
	if (pageName == "resume") {
		content.innerHTML = "<iframe width='100%' height='800px' src='content/resume.html'/>";
	} else if (pageName == "about") {
		content.innerHTML = "<iframe width='100%' height='800px' src='content/default.html'/>";
	} else if (pageName == "iKronos") {
		content.innerHTML = "<iframe width='100%' height='800px' src='iKronos/iKronos.html'/>";
	}else if (pageName == "iAteIt") {
		content.innerHTML = "<iframe width='100%' height='800px' src='iAteIt/iAteIt.html'/>";
	} else {
		content.innerHTML = pageName;
	}
}