// 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 = "SONO Japanese Restaurant - Level1, Tattersalls Building, Cnr Queen St & Edward St, Brisbane QLD";

	if (pageTracker) {
		pageTracker._trackPageview("Brisbane: "+str);
	}
}

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');

	}

}