function f_nav(page) {
	var tpl=404;
	if (page==1) { tpl='start'};
	if (page==2) { tpl='projects'};
	if (page==3) { tpl='reference'};
	if (page==4) { tpl='about'};
	if (page==5) { tpl='tools'};
	if (page==6) { tpl='links'};
	location.href='index.php?page='+tpl; 
}
