//-------------------------------//
//           website by          //
//         Andrew Levine         //
//   coppertop@wonder-drug.com   //
//-------------------------------//


// blur anchors 
function blurAnchors(){
  if(document.getElementsByTagName){
    var a = document.getElementsByTagName("a");
    for(var i = 0; i < a.length; i++){
      a[i].onfocus = function(){this.blur()};
    }
  }
}
window.onload = blurAnchors;

//show/hide layers
function setVisibility(id, visibility) {
	document.getElementById(id).style.display = visibility;
}

//custon new window opener
var win = null;
function NewWindow(mypage,myname,w,h,scroll,tool,loca){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',toolbar='+tool+',location='+loca+',resizable'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}
