
function redirect(url) {
	window.location.href					= url;
}

function closeThickbox() {
	tb_remove();
}

function getFlashMovie(movieName) {
	var isIE 						= navigator.appName.indexOf("Microsoft") != -1;
  	return (isIE) ? window[movieName] : document[movieName];
}

function doTrim (str) {
	var	str = str.replace(/^\s\s*/, ''),
		ws = /\s/,
		i = str.length;
	while (ws.test(str.charAt(--i)));
	return str.slice(0, i + 1);
}
