<!--
function newWin(imgImage, intWidth, intHeight, strHeading){
  nImage = new Image();
  nImage.src = imgImage;
  nWidth = intWidth;
  nHeight = intHeight
  nWidth = nWidth + 50;
  nHeight = nHeight + 100;
  myWin=window.open("","","width="+nWidth+",height="+nHeight+",status=no,toolbar=no,menubar=no,resizable=no");
  myWin.document.open();
  myWin.document.write("<html><head><title>Spokane Orthodontics</title></head><body><table border='0' width='100%'><tr><td align='center'><p style=\"font-family: 'Arial Rounded MT Bold'; font-size: 18px; color: #006cb7; align: center;\">" + strHeading + "</p></td></tr><tr><td align='center'><img border='0' src='");
  myWin.document.write(imgImage);
  myWin.document.write("'></td></tr><tr><td><p style=\"font-family: 'Microsoft Sans Serif'; font-weight: normal; font-size: 12pt; text-align: center; align: center; color: #000000;\"><a href='#' onClick='window.close()'>-Close Window-</a></p></td></tr></table></body></html>");
  myWin.document.close()}
  //-->