function GetNamePage() {
	var refurl=document.referrer;
	var np=refurl.split('/');
	var j=np.length;
	return np[j-1];
}

function ReloadSearchPage() {
	var seaurl=document.location.href;
	var np=seaurl.split('?');
	var j=np.length;
	var s=np[j-1];
    if (s==document.location.href) {s="templates/search.html";} else {s="templates/search.html?"+s;}
	document.getElementById("ifrMain").src=s;
	return true;
}

