function makeHomeLink(){
	var to=null;
}
function makeHomeLinkNa8seconds(){
     if(parent) if(self) if(self==parent){

	var logo = document.createElement("IMG");
	logo.setAttribute("width","60");
	logo.setAttribute("height","60");
	logo.setAttribute("alt","Goed Uit Eten logo");
	logo.setAttribute("src","http://www.goeduiteten.nl/graphics/logo.gif");

	var HRelmnt = document.createElement("HR");
	HRelmnt.setAttribute("width","100%");
	HRelmnt.setAttribute("size","2pt");
	HRelmnt.setAttribute("align","left");
	HRelmnt.setAttribute("noShade",false);

	var BRelement = document.body.appendChild(document.createElement("BR"));
	var busyelmnt = document.body.insertBefore(HRelmnt, document.body.firstChild);
	busyelmnt = document.body.insertBefore(BRelement, busyelmnt );

	var Aelmnt = document.createElement("A");
	Aelmnt.setAttribute("href","http://www.goeduiteten.nl/");
	Aelmnt.setAttribute("target","_self");
	Aelmnt.appendChild(logo);
	Aelmnt.appendChild(document.createTextNode(" home "));

	busyelmnt = document.body.insertBefore(Aelmnt, busyelmnt);
	busyelmnt = document.body.insertBefore(document.createTextNode("Deze pagina is onderdeel van de Goed Uit Eten pagina's : "), busyelmnt);
	busyelmnt = document.body.insertBefore(document.createElement("HR"), busyelmnt );
    }
}

