// JavaScript Document

function popup(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function popupPaintCalculator(place) {
  if (typeof place == "undefined" || place == "interior") {
	  window.open('/how2/CalcInt.html',
  			  'calculatorpopup',
  			  'scrollbars=yes,resizable=yes,width=550,height=470');
  } else {
	  window.open('/how2/CalcExt.html',
  			  'calculatorpopup',
  			  'scrollbars=yes,resizable=yes,width=550,height=470');
  }
}
