/*
	Extra script for popups so that iframe (when on focus) on FF2+/IE6+ works and can be be closed with ESC.
*/

document.onkeydown = function(e) {
	if (e==null) // ie
		keycode = event.keyCode;
	else // mozilla
		keycode = e.which;
	if (keycode == 27) // close
		top.tb_remove();
};

