function gallerypopup(url){
  var bwhkPopup = null;
  var leftPos = 0;
  var topPos = 0;

  if (screen) {
  leftPos = (screen.availWidth-700) / 2;
  topPos = (screen.availHeight-700) / 2;
  }
  bwhkPopup = window.open(url, 'BWHK', 'location=no,width=700,height=700,left='+leftPos+',top='+topPos+',scrollbars=no,directories=no,location=no,menubar=no,status=no,toolbar=no'); 
	if (window.focus) {bwhkPopup.focus()}
}


function productpopup(url, winWidth, winHeight){
  var bwhPopup = null;
  var leftPos = 0;
  var topPos = 0;

  if (screen) {
  leftPos = (screen.availWidth-winWidth) / 2;
  topPos = (screen.availHeight-winHeight) / 2;
  }
  bwhPopup = window.open(url, 'BlueWaterHunter', 'location=no,width='+winWidth+',height='+winHeight+',left='+leftPos+',top='+topPos+',scrollbars=no,directories=no,location=no,menubar=no,status=no,toolbar=no'); 
}

