<!--// popup windowfunction popupPicture(pictureURL, width, height, justPicture) {  if (justPicture) {    var frame = window.open('', '', 'width='+width+',height='+height+',scrollbars=0,location=0,menubar=0,resizable=1');    frame.document.write(      '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" '      +'"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n'      +'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n'      +'  <head>\n'      +'    <title>JoshMcAlear.com: '+pictureURL+'</title>'      +'    <style type="text/css">body {margin: 0px}</style>\n'      +'    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />\n'      +'  </head>\n'      +'  <body style="background-color: #000;">\n'      +'    <div style="padding: 10px;">\n'      +'      <img style="border: 3px solid #6d6f6e;" src="'+pictureURL+'" alt="'+pictureURL+'" />\n'      +'    </div>\n'      +'  </body>\n'      +'</html>'    );    return true;  } else {    window.open(pictureURL, '', 'width='+width+',height='+height+',scrollbars=1,location=0,menubar=0,resizable=1');  }}// -->