
function CrumbsCheck()
{
	if (typeof window.top.Header.Crumbs != 'function') 
	{
		setTimeout("CrumbsCheck()", 1000);
	}
	else
	{
		window.top.Header.Crumbs('Home');
	}
}

function ImageFs(src, height, width, title)
{
	var newwind = window.open("","","height=600,width=600,left=200,top=100");
	newwind.document.body.innerHTML = '<img id=Fs src=' + src + '>';
	newwind.document.title = 'Lynhales Hall Nursing Home: ' + title;
	while (!newwind.document.images["Fs"].complete)
	{
	}
	var vHeight = newwind.document.images["Fs"].height;
	var vWidth = newwind.document.images["Fs"].width;
	newwind.resizeTo(vWidth+25,vHeight+50);
	return false;
}

function ImageFs2(src, height, width, title)
{
	globalHTML="<html><head><title>Lynhales Hall Nursing Home: " + title + "</title></head><body><img id=Fs src='" + src + "'></body></html>";
	newwind = window.open("javascript:opener.globalHTML","","height=600,width=600,left=200,top=100");
	while (!newwind.document.images["Fs"].complete)
	{
	}
	var vHeight = newwind.document.images["Fs"].height;
	var vWidth = newwind.document.images["Fs"].width;
	newwind.resizeTo(vWidth+25,vHeight+50);
	alert('You are here');
	return false;
}
