




/*
     FILE ARCHIVED ON 3:36:49 янв 29, 2011 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 19:04:51 ноя 1, 2011.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
function blogRedirect(url) {
	document.location.href = url;
}

function $(elm) { return document.getElementById(elm); }

function toggleDisplay(elm, options) {
	elm = $(elm);
	var none = elm.style.display == "none";
	if (none && options.offText) {
		options.elm.innerHTML = options.offText;
	}
	else if (!none && options.onText) {
		options.elm.innerHTML = options.onText;
	}
	elm.style.display = none ? "": "none";
}

String.prototype.strip = function() {
	return this.replace(/^\s+/, '').replace(/\s+$/, '');
}

