function popUp(title, file, width, height) {
	window.open('stuff/popup.php?title='+title+'&file='+file+'&w='+width+'&h='+height,
				null,
				'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height);
}

/*var flashTarget = null;

function flash(id, class1, class2, rate, duration) {
	flashTarget = document.getElementById(id);
	if (flashTarget != null) {
		flasher = setInterval("_flash2('" + class1 + "','" + class2 + "')", rate);
		setTimeout("_unflash2('" + class1 + "')" , duration);
	}
}

function _flash2(class1, class2) {
	flashTarget.className = flashTarget.className == class1 ? class2 : class1;
}

function _unflash2(class1) {
	clearInterval(flasher);
	flashTarget.className = class1;
	flashTarget = null;
}*/