// JavaScript Document
function updateHeight(newH) {
	flash.height = newH;
	return true;
}
function displayFlashInfo(loc) {
	if (flash) {
		flash.updateSection(loc);
	} else if (parent.flash) {
		parent.flash.updateSection(loc);
	}
}
function setSectionInJavaScript(loc) {
	displayFlashInfo(loc);
}
function setTag(str) {
	document.location.href = "#"+str;
	document.title = "PhotoMounts & Albums";
}
function change(str) {
	displayFlashInfo("?"+str);
}
function getLocation() {
	return window.location.toString();
}
function updateIframe(loc) {
	if (document.getElementById('hiddenframe')) {
		var iframe = document.getElementById('hiddenframe');
		iframe.src = loc;
		iframe.reload();
	} else {
		alert('No iFrame');
	}
}