


// JavaScript for Comfort Harps, Saint George, Utah
// Author: Susan L. Bolander, Webworks7 (www.webworks7.com), except where otherwise noted
// Date: February 2005




// --------- Prevent this site from being framed ----------------

if(window != top)
{
  if(history.length==0)
  {
    top.location = self.location
  }
  else
  {
    window.open(location.href);
    history.go(-1);
  }
}


//  ----------  Make new window for photo display  ----------- 

var NewWindow

function MakeNewWindow(photo,width,height)
{

  if (!NewWindow || NewWindow.closed)
  {
    NewWindow = window.open("","","status=0,10,10,dependent=1,scrollbars=0,resizable=0")
  }
 
  NewWindow.resizeTo((parseInt(width) + 60),(parseInt(height) + 100))
  
 
  if (!NewWindow.opener)
  {
    NewWindow.opener = window
  }

var NewContent = ""

NewContent = "<html><head><link rel='stylesheet' type='text/css' href='comfort_harps.css' /></head><body bgcolor='#000033'><p align='center'><img src='"

NewContent += photo

NewContent += "' width='"

NewContent += width

NewContent += "' height='"

NewContent += height

NewContent += "' /></p><p align='center'><a href='javascript:void(window.close();return false;)' onclick='window.close();return false;'>Click here to close this window</a></body></html>"
  
  NewWindow.document.write(NewContent)
  NewWindow.document.close()
  NewWindow.focus()
  return false
  
}

