﻿/* 
File Name:    popwin.js
Copyright:    Noble Lowndes Corporation Limited
              http://www.noblelowndes.com/
*/

/* Popup Window */

function popup(link1, popwin) {
if (!window.focus) return true;
  var href;
if (typeof (link1) == 'string')
  href = link1;
else
  href = link1.href;
  window.open(href, popwin, 'width=400,height=500,scrollbars=yes');
return false;
}