/**
 * Common javascript functions
 */

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

function adjustMenu() {
	var contentDiv = document.getElementById('page');
	var menu = document.getElementById('menu');
	menu.style.height = (contentDiv.offsetHeight + 1) - 150 + "px";
	if (document.all) {
		menu.style.height = (contentDiv.offsetHeight + 1) - 150;
	}
}

function popup(url, w, h) {
	var f = "width=" + w + ", height=" + h;
	var w = window.open(url, "w", f);
	w.focus();
}
