//keep site in its own window
if (top != self) top.location.href = self.location.href

//gobal variable
var popup_window


//function used to "flash" links with mouse-overs
function flashLink(currLink, blnStatus) {
    //currLink.style.color = currColor

    if (blnStatus == true ) {
        currLink.style.color = '#FFFFFF'
        //currLink.style.textDecorationUnderline = true
        currLink.style.textDecorationOverline = true
    } else {
        currLink.style.color = '#99ee99'
        //currLink.style.textDecorationUnderline = false
        currLink.style.textDecorationOverline = false

    }

}


//function used to create popup window

function PopWin(url){
  var intLeft = (screen.availWidth - 550) / 2
  var intTop = (screen.availHeight - 400) / 2
  var options = 'width=550,height=400,resizable=0,scrollbars=1,toolbar=0,location=0,status=yes,left='+ intLeft +',top='+ intTop
  var name = 'works_desc'
  var ContextWindow = window.open(url,name,options);
  ContextWindow.opener = this;
  ContextWindow.focus();
}