﻿function loadPage(url) {
	if(location.href.indexOf(url)!=-1)
		return;
	else
		location.replace(url);
}