if (document.layers) document.captureEvents(Event.MOUSEDOWN);

function open_window(url, window_name, features) {
  new_window = window.open(url, window_name, features);
	new_window.focus();
}

function status_bar(message) {
  window.status = message;
}

if (top.frames.length!=0) {
    if (window.location.href.replace)
        top.location.replace(self.location.href,'_blank','status=1,location=1,menubar=1,toolbar=1');
    else
        top.location.href=self.document.href;
}

