setInterval(updateLoc, 20);
document.loc = "";

function updateLoc() {
	if (window.location.hash.toString().substr(1) != document.loc && !document.chill) setLocationToFlash(window.location.hash.toString().substr(1));
}

function setLocation(loc) { 
	window.location.hash = loc;
	document.loc = loc;
	document.title = "Peter Stutterheim & The Stutterheim Family : " + loc;
	document.chill = true;
	setTimeout(killChill, 50);
}

function setLocationToFlash(loc) {
	if ($('mainsite').setLocation) $('mainsite').setLocation(loc);
}

function killChill() {
	document.chill = false;
}

function popup(url) {
	var w = 300;
	var h = 400;
	var p = window.open(url,"popup","width="+w+",height="+h+",resizable,scrollbars=yes");
	p.document.close();
}
