<!-- begin
function target() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
anchor.getAttribute("rel") == "external")
anchor.target = "_blank"; } }
function linkDown() {
this.onfocus = this.blur; }
function linkUp() {
this.onfocus = window.clientInformation ? null : window.undefined; }
function blured() {
var i;
for (i= 0; i<document.links.length; i++) {
document.links[i].onmousedown = linkDown;
document.links[i].onmouseup = linkUp; } }
function breakout() {
if (window.top != window.self) {
window.top.location="" } }
// end -->
