var str = "left=0,screenX=0,top=0,screenY=0";

if (window.screen) {
  var ah = screen.availHeight - 30;
  var aw = screen.availWidth - 10;
  str += ",height=" + ah;
  str += ",innerHeight=" + ah;
  str += ",width=" + aw;
  str += ",innerWidth=" + aw;
  str += ",resizable"; 
  str += ",scrollbars=yes";
} else {
  str += ",resizable"; 
  // so the user can resize the window manually
}

/*function launchPopCatalog(url, name) {
  return window.open("http://www.platinumonlinecatalog.com/catalogload.asp", name, str);
}*/

function launchPopCatalog(url, name) {
  return window.open("http://platinumonlinecatalog.com", name, str);
}