// photo-display.js

var newWind
var pageTitle = " ";
var NewContent = " ";
var backColor = "#336666";
var textColor = "white";

function closeSubWind() {
  if (newWind && !newWind.closed) {
    newWind.close()
  }
}

function DoContent (image, descrip) {
    NewContent = "<head><title>SDARI</title>"
	NewContent = NewContent + "<link rel='stylesheet' href='mainstyle.css' type='text/css'>"
	NewContent = NewContent + "<STYLE TYPE='text/css' MEDIA=screen> "
	NewContent = NewContent + "body {background-color: " + String(backColor) + "; "
	NewContent = NewContent + "color: " + String(textColor) + ";} </STYLE>"
	NewContent = NewContent + "</head>"
    NewContent = NewContent + "<div align=center><h3 style='color: white'>" + String(pageTitle) + "</h3>"
    NewContent = NewContent + "<h5>" + String(descrip) + "</h5>"
    NewContent = NewContent + String(image) + "<BR><BR>"
    NewContent = NewContent + "<FORM><INPUT TYPE='button' VALUE='Print' onClick='window.print()'>&nbsp;&nbsp;"
    NewContent = NewContent + "<INPUT TYPE='button' VALUE='Close' onClick='window.close()'></FORM><br>"
    NewContent = NewContent + "<span class='copyrite'>&copy; 1998-2010 San Diego Association for Rational Inquiry</span>"
    NewContent = NewContent + "</div></body></html>";
    return true;
}

function doPhotoPage(spImage,spDescrip,spIwidth,spIheight) {
  var height = 590;
  var width = 780;
  var descrip = String(spDescrip);
  if (spIheight) { height = spIheight }
  if (spIwidth) { width = spIwidth }
  if (!spDescrip) { descrip = ' ' }
  closeSubWind()
  newWind = window.open("","","height="+String(height)+",width="+String(width)+",scrollbars,resizable,top=10,left=10")
  DoContent(spImage,descrip)
  newWind.document.write(NewContent)
  newWind.document.close()
  newWind.focus()
}
