//this javascript file contains all the custom classes that relate to 
//this website, these classes can be called from onclick events for 
//most links and also onload on all pages (except for the home page).


function windy(pagename,theWidth,theHeight,anyToolbars)
 {
  popUp = window.open(pagename,'popUp','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars='+anyToolbars+',width='+theWidth+',height='+theHeight);
  if (popUp != null){
    popUp.focus();
  }
 }
 