
function launchCenter(url, name,  width,  height) {
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight -30;
    var aw = screen.availWidth - 10;
    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;
    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  str += ", directories=no, location=no, menubar=no, scrollbars=no, status=no, toolbar=no, resizable=no";	
  return window.open(url, name, str);
}

function FT002() {
	var url= "popups/firetools/scepter.html";
	var name="Scepter";
	var width = 500;
	var height= 590;
	launchCenter( url, name, width, height );
}

function FT001() {
	var url= "popups/firetools/andrirons.html";
	var name="Andirons";
	var width = 500;
	var height= 491;
	launchCenter( url, name, width, height );
}

function G002() {
	var url= "popups/firetools/pineset.html";
	var name="Pineset";
	var width = 500;
	var height= 590;
	launchCenter( url, name, width, height );
}

function FT004() {
	var url= "popups/firetools/steelset.html";
	var name="Steelset";
	var width = 500;
	var height= 590;
	launchCenter( url, name, width, height );
}

