/* Javascript for the vigilanceofbrixham.co.uk website */

/* Link to a URL in a new window
     Call in the web page will look like:

    <a href="url"
       onclick="newWindow(this.href); return false;"> 
       displayed text
    </a> 

*/

var newLink;
function newWindow(newpage) 
  {
newLink = window.open(newpage,"vigNewWindow","width=600,height=400,left=150,top=150,scrollbars,menubar,toolbar,status,location,resizable,directories");

  if (window.focus) (newLink.focus() ) 
  return false;
  }
