//Art and photography popup script.
//Author: Jeff Ocheltree,  http://www.jeffsdigital.com

function popimage(imagesrc,winwidth,winheight,who,desc){

//  winwidthCalc = imagesrc.substr(10,3);
//  winheightCalc = imagesrc.substr(13,3);
  if (!document.all) {
    winwidth=winwidth+4;
    winheight=winheight+4;
  }
  var look='width='+winwidth+',height='+winheight+','
  popwin=window.open("","",look)
  popwin.document.open()

  if (document.all) {
    popwin.document.write('<head><title>'+who+'</title><link rel="stylesheet" type="text/css" href="../includes/jeffsdigitalstyles.css"></head><body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" bgcolor="#7A7C5F"><table align="center" cellspacing="0" cellpadding="2" border="0" bgcolor="#7A7C5F"><tr><td bgcolor="#7A7C5F"><img src="'+imagesrc+'"><br><span class="bold_white">'+desc+'</span></td></tr></table></body>')
  }else{
    popwin.document.write('<head><title>'+who+'</title><link rel="stylesheet" type="text/css" href="../includes/jeffsdigitalstyles.css"></head><body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" bgcolor="#7A7C5F"><table align="center" cellspacing="0" cellpadding="2" border="0" bgcolor="#7A7C5F"><tr><td bgcolor="#7A7C5F"><img src="'+imagesrc+'"></td></tr></table></body>')
  }
  popwin.document.close()
}
