window.defaultStatus = "[ © 2003 GB-Design. ]";

function copyright() {if (event.button==2) {
alert('© 2003 GB-Design.'); }}
document.onmousedown=copyright

var newwindow = '';
features = 'resize=yes,menubar=no,toolbar=no,directories=no,location=no';

function openNewWindow(url,name,w,h){
  if (newwindow.location && !newwindow.closed){
  newwindow.location.href = url;
  }
  else{
  features = 'width='+w+'0,height='+h+'0,features';
  newwindow=window.open(url,'name',features);
  if (!newwindow.opener) newwindow.opener = self;
  }
if (window.focus) {newwindow.focus()}
}
