/*

BrowserState actionscript class relies on these
js methods to update/interact with browser

*/

var browser_state = {
	
	setValue: function(url) {
		location.href = url;
	},
	
	setTitle: function(title) {
		document.title = title;
	}
	
};


