

// link dots remover

function unblur() {
this.blur();
}

function blurLinks() {
if (!document.getElementById) return;
theLinks = document.getElementsByTagName("a");
for(i=0; i<theLinks.length; i++) {
theLinks[i].onfocus = unblur;
}
}

// popup

function ShowIm(n, w, h){
l=510-(w/2);if(l+w>780)l=780-w;if(w>780)l=0;
window.open(n,'',"toolbar=no,status=no,scrollbars=yes,width="+w+",height="+h+"left="+l+",top=50");
}

function ShowFl(n, w, h){
var u = 'flash/' + n + '.html';
var par = "'toolbar=no,status=no,width="+w+",height="+h+"'";
window.open(u, '', par);
}


// frameset buster
if (top != window){
    top.location.href = window.location.href;
}



